main.dart 421 Bytes
Newer Older
nayeli92433 committed
1
import 'package:flutter/material.dart';
nayeli92433 committed
2
import 'config/routes.dart';
nayeli92433 committed
3 4 5 6 7 8

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
nayeli92433 committed
9
  const MyApp({Key? key}) : super(key: key);
nayeli92433 committed
10 11 12 13 14

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
nayeli92433 committed
15
      debugShowCheckedModeBanner: false,
nayeli92433 committed
16 17
      initialRoute: 'login',
      routes: getApplicationRoutes(),
nayeli92433 committed
18 19 20
    );
  }
}