Skip to content

Commit d78da0a

Browse files
feat(ref: no-ref): fix comments
1 parent 5d01c2d commit d78da0a

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

lib/screens/home/home.screen.dart

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@ import '../home/title/title.widget.dart';
44

55
class HomeScreen extends StatelessWidget {
66
const HomeScreen({super.key});
7-
87
@override
9-
Widget build(BuildContext context) => const Scaffold(
10-
backgroundColor: Colors.white,
11-
body: Center(
12-
child: Column(
13-
children: <Widget>[
14-
TitleWidget(),
8+
Widget build(BuildContext context) => Scaffold(
9+
backgroundColor: Colors.white,
10+
body: ListView(
11+
children: const <Widget>[
12+
Center(child: TitleWidget()),
1513
TodoWidget(),
1614
],
1715
),
18-
),
19-
);
20-
}
16+
);
17+
}

0 commit comments

Comments
 (0)