flutter-woocommerce-app/LabelStoreMax/lib/app/providers/route_provider.dart
2022-05-19 21:37:41 +01:00

11 lines
230 B
Dart

import 'package:flutter_app/routes/router.dart';
import 'package:nylo_framework/nylo_framework.dart';
class RouteProvider implements NyProvider {
boot(Nylo nylo) async {
nylo.addRouter(appRouter());
return nylo;
}
}