c90Beretta 12 часов назад
Родитель
Сommit
f137050cd3
1 измененных файлов с 4 добавлено и 3 удалено
  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 {
     );
   }
 }
+