https://github.com/asmitranjansinha/mobile-app-dev-vitb
https://github.com/asmitranjansinha/mobile-app-dev-vitb
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/asmitranjansinha/mobile-app-dev-vitb
- Owner: asmitranjansinha
- Created: 2024-03-14T06:25:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-08T17:01:15.000Z (8 months ago)
- Last Synced: 2025-02-08T17:32:19.634Z (8 months ago)
- Language: Dart
- Size: 2.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test App ๐งช
This test app was created in order to demonstrate the principles of mobile application development in mobile app dev course of a University.
## Architecture ๐๏ธ
The app follows the **Model-View-Controller (MVC)** architecture for clean and maintainable code.
### Project Structure ๐ณ
```
lib/
โโโ controllers/ # Contains all the business logic
โโโ models/ # Contains data models
โโโ views/ # Contains UI screens and pages
โ โโโ widgets
โ โโโ screens
โโโ utils/ # Utility files
โ โโโ constants # constant files
โ โโโ theme # App-wide styling
โโโ main.dart # Entry point of the app
```---
## Dependencies ๐ฆ
Here are the key dependencies used in the project:
- **cupertino_icons**: ^1.0.2
- **provider**: ^6.1.2---
## Screenshots ๐ธ
|
|
|
|
|
|
|
---
## How to Run ๐
1. **Clone the repository**:
```bash
git clone https://github.com/asmitranjansinha/mobile-app-dev-vitb.git
```
2. **Navigate to the project directory**:
```bash
cd mobile-app-dev-vitb
```
3. **Install dependencies**:
```bash
flutter pub get
```
4. **Run the app**:
```bash
flutter run
```---