16 lines
357 B
Dart
16 lines
357 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:frontend/routes/custom_router.dart';
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp.router(
|
|
title: 'TRIP MANAGEMENT',
|
|
routerConfig: router,
|
|
debugShowCheckedModeBanner: false,
|
|
);
|
|
}
|
|
} |