A new Flutter project.
This project is a starting point for a Flutter application.
Here are some sample images included in the project:
Before running the application, make sure you:
Run the following commands to clean and fetch the necessary dependencies:
bash Copy code flutter clean flutter pub get Update the server links in both service files located in the service folder:
Example: dart Copy code final String serverUrl = "http://your-ipv4-address:port"; To find your IPv4 address: Windows: Run ipconfig in Command Prompt. Mac/Linux: Run ifconfig in Terminal. Ensure the mobile device running the APK (if not using an emulator) is connected to the same network as the computer hosting the server.
Build the APK:
bash Copy code flutter build apk --release Install the APK on an Android device:
Or use: bash Copy code adb install build/app/outputs/flutter-apk/app-release.apk Run the server on your computer before launching the app on your Android device.
Open the application on your Android device, ensuring the server is running and the network configuration is correct.
A few resources to get you started if this is your first Flutter project:
Lab: Write your first Flutter app Cookbook: Useful Flutter samples For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.


