This document explains how to set up the Flutter environment and build the Flutter application for Windows.
- Ensure the Flutter SDK is installed and properly configured.
- Follow the instructions in the Flutter Documentation.
Run the following command to fetch dependencies:
flutter pub get
flutter create --platforms=windows flutter_tools
This command creates a Flutter project named flutter_tools
with Windows support.
cd flutter_tools
flutter doctor
This ensures all necessary tools are ready for Windows development.
flutter run -d windows
The -d windows
flag ensures the app runs in a Windows desktop environment.
flutter build windows
This generates the build files for distributing the application on Windows.
Image 1: Main screen of the app.
Image 2: Serial communication screen.
Image 3: Key derivation screen.
Image 4: Main screen in light mode with tab system.
Keep the README updated with badges, version, and project status.