PlanADay Application: Suggest One Day Trip is a mobile application that helps people who want to go on a one-day trip without wasting time to create the plan that has many steps to do such as searching for places, available hours on each place, finding the route path and so on. The application will help reduce the time spent on organizing a one
- OS : MacOS ( For IOS Deployement )
- Xcode Program
- Flutter Environtment
1.clone this project
git clone https://github.com/jigneng1/planAday
2.install dependency
flutter pub get
3.Run this project ( via emulator device or physical device )
flutter run
1.clone this project
git clone https://github.com/jigneng1/planAday
2.install dependency
flutter pub get
lib/
├── main.dart # Entry point of the application
├── src/ # Main source code directory
│ ├── app.dart # Main app widget
│ ├── core/ # Core utilities and services
│ │ ├── constants.dart # Constant values used throughout the app
│ │ ├── routes.dart # Route definitions
│ │ └── theme.dart # Theme and styling definitions
│ ├── models/ # Data models
│ ├── services/ # Business logic and services (e.g., API calls)
│ ├── widgets/ # Reusable widgets
│ ├── screens/ # Different screens or pages
│ │ ├── home_screen.dart # Home screen
│ │ ├── login_screen.dart # Login screen
│ │ └── other screens...
│ ├── providers/ # State management (e.g., providers, blocs)
│ ├── utils/ # Utility functions and helpers
│ └── config/ # App configuration files
└── assets/
├── images/ # Image assets
├── fonts/ # Custom fonts
└── other assets...
