flutter-app boilerplate
This repo is a boilerplate to create flutter application easily. It is based on GetX. More info about GetX here. The app has been setup to work with retrofit, dio, json_annotation, intl_utils and shimmer
Getting Started
- Install Flutter SDK. Require Flutter 2.0
- Install plugins in Android Studio
- Clone the repo.
- Run
flutter pub get
- Run
flutter pub run intl_utils:generate
- Run
flutter pub run build_runner build --delete-conflicting-outputs
- Run app.
File structure
assets
└───font
└───image
└───2.0x
└───3.0x
libs
└───common
│ └───app_colors.dart
│ └───app_dimens.dart
│ └───app_images.dart
│ └───app_shadows.dart
│ └───app_text_styles.dart
│ └───app_themes.dart
└───configs
│ └───app_configs.dart
└───database
│ └───secure_storage_helper.dart
│ └───shared_preferences_helper.dart
│ └─── ...
└───l10n
└───models
│ └───entities
│ │ └───user_entity.dart
│ │ └─── ...
│ └───enums
│ │ └───load_status.dart
│ │ └─── ...
│ └───params
│ │ └───sign_up_param.dart
│ │ └─── ...
│ └───response
│ └───array_response.dart
│ └───object_response.dart
└───networks
│ └───api_client.dart
│ └───api_interceptors.dart
│ └───api_util.dart
└───router
│ └───route_config.dart
└───services
│ └───api
│ └───store
│ └───auth_service.dart
│ └───cache_service.dart
│ └───setting_service.dart
└───ui
│ └───commons
│ │ └───app_bottom_sheet.dart
│ │ └───app_dialog.dart
│ │ └───app_snackbar.dart
│ │ └───...
│ └───pages
│ │ └───splash
│ │ │ └───splash_logic.dart
│ │ │ └───splash_state.dart
│ │ │ └───splash_view.dart
│ │ └───...
│ └───widget
│ └───appbar
│ └───buttons
│ │ └───app_button.dart
│ │ └───app_icon_button.dart
│ │ └───...
│ └───images
│ │ └───app_cache_image.dart
│ │ └───app_circle_avatar.dart
│ └───textfields
│ └───shimmer
│ └───...
└───utils
│ └───date_utils.dart
│ └───file_utils.dart
│ └───logger.dart
│ └───utils.dart
└───main.dart
main.dart
The "entry point" of program.
In general, main.dart
contain AppMaterial, but this repo use GetMaterialApp whichs has the default MaterialApp as a child.
assets
This folder is to store static assests like fonts and images.
common
configs
This folder hold the config of your applications.
database
l10n
This folder contain all localized string. See more
models
networks
router
This folder contain the route navigation
services
This folder contain all GetxService or any service which can not be removed from memory.
ui
utils
How to use
Creating a screen.
All screen should be created in the ui/pages
folder
User the GetX plugin to create new screen.
Example: MovieSection
Logic: movies_section_logic.dart
State: movies_section_state.dart
View: movies_section_view.dart
Creating api service.
- Create entity object in folder
lib/models/entities
Ex:movie_entity.dart
Class must have @JsonSerializable()
for generator. Read json_serializable
- Define and Generate your API in file
lib/networks/api_client.dart
Ex: GET movies
Note: Using ArrayResponse and ObjectResponse for generic response
- Require run command line:
flutter pub run build_runner build --delete-conflicting-outputs
- Create api service file for your feature in folder
lib/services/api
Ex:movies_api.dart
After, add part 'auth_api.dart';
to services/api/api_service
- You can call API in the logic of screen.
Ex:
Support multiple Theme and Language
See SettingService class for more detail