lib/
├── app/
│ ├── app.dart
│ ├── router.dart
│ ├── theme.dart
│ ├── providers.dart
│ └── constants.dart
│
├── core/
│ ├── network/
│ │ ├── dio_client.dart
│ │ └── interceptors/
│ ├── services/
│ ├── utils/
│ └── exceptions/
│
├── features/
│ ├── auth/
│ │ ├── data/
│ │ │ ├── models/
│ │ │ └── repositories/
│ │ ├── providers/
│ │ ├── view/
│ │ └── viewmodel/
│ │
│ ├── home/
│ │ ├── data/
│ │ ├── providers/
│ │ ├── view/
│ │ └── viewmodel/
│ │
│ └── profile/
│ ├── data/
│ ├── providers/
│ ├── view/
│ └── viewmodel/
│
├── widgets/
│ ├── custom_button.dart
│ ├── loading_indicator.dart
│ └── ...
│
└── main.dart