We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2178847 commit 0a8186cCopy full SHA for 0a8186c
1 file changed
lib/features/presentation/home_screen.dart
@@ -11,10 +11,15 @@ class HomeScreen extends StatelessWidget {
11
print('home screen built');
12
return const Scaffold(
13
body: AnimationScreen(),
14
- floatingActionButton: Wrap(
15
- direction: Axis.vertical,
16
- spacing: 30,
17
- children: [FlagSwitch(), STTWidget()],
+ floatingActionButton: Column(
+ mainAxisSize: MainAxisSize.min,
+ mainAxisAlignment: MainAxisAlignment.center,
+ crossAxisAlignment: CrossAxisAlignment.center,
18
+ children: [
19
+ // FlagSwitch(),
20
+ // SizedBox(height: 30),
21
+ Center(child: STTWidget()),
22
+ ],
23
),
24
);
25
}
0 commit comments