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.
10 lines
305 B
Dart
10 lines
305 B
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(),
|
|
};
|
|
}
|