Нет описания

1234567891011
  1. import 'package:fast_med_flutter/routes/home.dart';
  2. import 'package:fast_med_flutter/routes/ver_oficinas.dart';
  3. import 'package:flutter/material.dart';
  4. void main() => runApp(MaterialApp(
  5. initialRoute: '/home',
  6. routes: {
  7. '/home': (context) => Home(),
  8. '/verOficinas': (context) => VerOficinas(),
  9. }
  10. ));