small fix

main
Lachfrosch 2024-05-08 16:18:42 +02:00
parent c3dbf3034e
commit 07bcec6fa1
1 changed files with 22 additions and 19 deletions

View File

@ -70,12 +70,14 @@ class _MyHomePageState extends State<MyHomePage> {
_grid = List.generate(widget.gridSize, (_) => List.generate(widget.gridSize, (_) => Random().nextInt(5)));
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Candy Crush'),
),
body: Center(
child: Expanded(
child: GridView.builder(
shrinkWrap: true,
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
@ -98,6 +100,7 @@ class _MyHomePageState extends State<MyHomePage> {
},
),
),
),
);
}