A simple app that generate a code that will redirect you to a specific route / page
### Run your app
flutter run -d chrome --web-hostname localhost --web-port 5000
routes: {
'/': (context) => CodeGeneratorPage(),
'/home': (context) => HomePage(),
'/manage-code': (context) => ManageCodesPage(),
'/paste-code': (context) => PasteCodePage(),
'/page-one': (context) => PageOne(),
'/page-two': (context) => PageTwo(),
'/page-three': (context) => PageThree(),
},
Copy code to clipboard :