説明なし

1234567891011121314151617181920212223242526272829
  1. import 'package:fast_med_flutter/routes/home.dart';
  2. import 'package:fast_med_flutter/routes/ver_oficinas.dart';
  3. import 'package:fast_med_flutter/routes/ver_oficina.dart';
  4. import 'package:fast_med_flutter/routes/calendario.dart';
  5. import 'package:fast_med_flutter/routes/main.dart';
  6. import 'package:fast_med_flutter/routes/register.dart';
  7. import 'package:fast_med_flutter/routes/welcome.dart';
  8. import 'package:fast_med_flutter/routes/album.dart';
  9. import 'package:flutter/material.dart';
  10. import 'package:fast_med_flutter/routes/especialidades.dart';
  11. import 'package:fast_med_flutter/routes/profileinfo.dart';
  12. import 'routes/translation.dart';
  13. void main() => runApp(MaterialApp(
  14. initialRoute: '/home',
  15. routes: {
  16. '/home': (context) => Home(),
  17. '/verOficinas': (context) => VerOficinas(),
  18. '/ver/oficina': (context) => VerOficina(),
  19. '/calendario': (context) => Calendario(),
  20. '/welcome': (context) => WelcomePage(),
  21. '/register': (context) => RegisterPage(),
  22. '/MyApp': (context) => MyApp(),
  23. '/album': (context) => album(),
  24. '/especialidades': (context) => especialidades(),
  25. '/perfil': (context) => ProfilePage(),
  26. '/translation': (context) => translation(),
  27. }
  28. ));