Skip to content

forestvpn/wgrest-mobile

Repository files navigation

wgrest-mobile

WGRest Mobile App

Credits:

Structure

lib
├── features
│   ├── home
│   └── peer
├── ui
│   ├── widgets
│   └── theme
├── router
├── repositories
├── utils
├── main.dart
└── wgrest_app.dart

Development

Routing

This application use auto_router package for routing

Create new route

  • Create new screen named <YourName>Screen
  • Add AutoRoute(page: <YourName>Screen) in routes list
  • Run build_runner to generate route
flutter pub run build_runner build --delete-conflicting-outputs