нет, вы нена примере
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
initialRoute: 'inicio',
routes: <String, WidgetBuilder>{
'tabs': (BuildContext context) => TabsPage(),
'eventos': (BuildContext context) => EventosPage(),
'agenda': (BuildContext context) => AgendaPage(),
'sobre': (BuildContext context) => SobrePage(),
'palestrantes': (BuildContext context) => PalestrantesPage(),
'inicio': (BuildContext context) => InicioPage(),
'hoteis': (BuildContext context) => HoteisPage(),
'restaurantes': (BuildContext context) => RestaurantesPage(),
'info': (BuildContext context) => InfoPage(),
'homeParticipante': (BuildContext context) => HomeParticipante(),
'qr': (BuildContext context) => QrPage(),
},
title: 'Siepex App',
);
}
каждый из маршрутов возвращает виджет (обычно Scaffold), который будет смонтирован на материале приложения как дочерний.