c90Beretta před 12 hodinami
rodič
revize
f137050cd3
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. 4 3
      lib/views/home/home_screen.dart

+ 4 - 3
lib/views/home/home_screen.dart

@@ -44,9 +44,9 @@ class Formulario extends State<HomeScreen> with SingleTickerProviderStateMixin {
       drawer: AppDrawer(),
       body: TabBarView(
         controller: _tabController,
-        children: <Widget>[
-          const HomeBody(),
-          const ProfileScreen(),
+        children: const <Widget>[
+           HomeBody(),
+           ProfileScreen(),
         ],
       ),
       bottomNavigationBar: CustomBottomNavigationBar(
@@ -59,3 +59,4 @@ class Formulario extends State<HomeScreen> with SingleTickerProviderStateMixin {
     );
   }
 }
+