You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
446 B
Dart
13 lines
446 B
Dart
import 'package:car_customer_app/views/book_provider_app_view.dart';
|
|
import 'package:car_customer_app/views/dashboard/dashboard_page.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:mc_common_app/config/routes.dart';
|
|
|
|
class CustomerAppRoutes {
|
|
static final Map<String, WidgetBuilder> routes = {
|
|
AppRoutes.dashboard: (context) => DashboardPage(),
|
|
AppRoutes.bookProviderAppView: (context) => BookProviderAppView(),
|
|
|
|
};
|
|
}
|