πŸ“¦ Project Setup


After cloning the project, run the following commands:

```bash
git clone https://github.com/yourusername/techtonic-frontend.git
cd techtonic-frontend
flutter pub get

This will fetch all dependencies listed in pubspec.yaml.

Folder structure overview:

/lib
  /core         # Constants, themes, shared utilities
  /models       # Data models (User, Course, Lesson, etc.)
  /screens      # Individual screen UIs
  /widgets      # Reusable UI components
  /services     # API services and integration
  /providers    # State management logic (Bloc, Provider)
  /localization # Multi-language support
/main.dart      # App entry point

Last updated