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