A Flutter application designed to provide a user-friendly interface for selecting and performing tasks like "Corn Viability Detection" and "Corn Type Detection." The app features an intuitive UI with interactive cards and information pop-ups for each task.
-
Corn Viability Detection
Users can start the viability detection process for corn. -
Corn Type Detection
Allows users to determine the type of corn with ease. -
Harvest Estimation Features
Allows users to determine the probable number of harvest base on the viability results. -
User Friendly
Allows users to use the app with ease. -
Information Pop-Ups
Each detection option includes an info icon that provides additional details about the task.
- Flutter SDK: Version 3.22.3 or later
- Dart : Version 2.17.0 or later
- Android Studio
- Visual Studio Code
- Supported Platforms: Android, iOS, Linux, Windows, Macos and Web.
-
Download Flutter SDK
Visit the Flutter Website and follow the installation instructions for your operating system. -
Verify Installation
Run the following command in your terminal to ensure Flutter is correctly installed:flutter doctor
-
Download Android Studio Here and follow the installation instructions for your operating system.
-
Verify Installation
-
Setup android studio
-
Download Emulator
-
Integrate Virtual Emulator path to your VS code / If you don't want virtual emulator, use physical device
- In your Physical Device Open Android build Version Click it 7 times.
- You are now a Developer.
- Navigate to Developer Options.
- Navigate and Allow USB Debugging.
- Connect your physical device to your computer using cable.
-
Be sure you have already install git.
-
Download Git Here and follow the installation instructions for your operating system.
-
Install and setup git in your computer.
-
Open command prompt in your computer and type this command and press enter to clone my project repository.
git clone 'https://github.com/lightdarkmaster/seedscan'
- Go to Project Directory
cd seedscan
- Install packages and dependencies
flutter pub get
- Run the project
flutter run
-
to reduce app size follow the command below.
flutter build appbundle --target-platform android-arm,android-arm64
-
Or you can use this:
flutter build appbundle --release --target-platform android-arm64
-
Or maybe this command:
flutter build apk --release --target-platform android-arm64
-
But if you want to build the app normally without target platform run this command:
flutter build apk
--- end ---