Files
Ontime/flutter_conversion_notes.md
2026-04-01 11:55:47 +07:00

742 B

Flutter Conversion (Initial)

Created new Flutter app folders:

  • flutter_driver_clone
  • flutter_user_clone
  • flutter_merchant_clone

Each app currently includes:

  • pubspec.yaml
  • lib/main.dart with a login screen layout modeled from Java UI

Run each app:

  1. cd flutter_driver_clone && flutter pub get && flutter run
  2. cd flutter_user_clone && flutter pub get && flutter run
  3. cd flutter_merchant_clone && flutter pub get && flutter run

Note:

  • The structure and visual composition are matched to the Java login screens first.
  • To make the interface exactly identical on all screens, the next step is converting each remaining XML screen (register, main, wallet, chat, etc.) one-by-one into Flutter widgets.