Just simple of NTI Flutter Starter
Introducing the NTI Flutter Starter - a simple and efficient starting point for your Flutter projects. This starter kit comes with pre-configured boilerplate code, follows industry-standard best practices, and offers a clean project structure to make navigating your codebase easy.
Follow these simple steps to use this template.
- Click on the "Use this template" button.
- Select "Create a new repository".
- Enter a name for your repository.
- Choose whether to make it public or private.
- Click on the "Create repository" button.
- Navigate to the newly created repository.
- Clone the repository to your local machine by run this command
git clone YOUR_GIT_REPOSITORY_URL
. - Open your project directory and run this command
flutter pub get
.
- if it can't be in
flutter pub get
, try updating your flutterflutter upgrade
andflutter precache
- build_runner command :
flutter packages pub run build_runner build --delete-conflicting-outputs
- with listen can use
flutter packages pub run build_runner watch --delete-conflicting-outputs
- build Apk command:
flutter build apk --release -t lib/main_prod.dart
for release apkflutter build apk --debug -t lib/main_dev.dart
for debug apk