|
@@ -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 {
|
|
|
);
|
|
|
}
|
|
|
}
|
|
|
+
|