We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d01c2d commit d78da0aCopy full SHA for d78da0a
lib/screens/home/home.screen.dart
@@ -4,17 +4,14 @@ import '../home/title/title.widget.dart';
4
5
class HomeScreen extends StatelessWidget {
6
const HomeScreen({super.key});
7
-
8
@override
9
- Widget build(BuildContext context) => const Scaffold(
10
- backgroundColor: Colors.white,
11
- body: Center(
12
- child: Column(
13
- children: <Widget>[
14
- TitleWidget(),
+ Widget build(BuildContext context) => Scaffold(
+ backgroundColor: Colors.white,
+ body: ListView(
+ children: const <Widget>[
+ Center(child: TitleWidget()),
15
TodoWidget(),
16
],
17
),
18
- ),
19
- );
20
-}
+ );
+}
0 commit comments