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

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

nayeli92433 committed
8

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

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