diff options
Diffstat (limited to 'lib/page_home.dart')
-rw-r--r-- | lib/page_home.dart | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/page_home.dart b/lib/page_home.dart index fe35025..1084a4f 100644 --- a/lib/page_home.dart +++ b/lib/page_home.dart @@ -10,7 +10,10 @@ class HomePage extends StatelessWidget { Widget build(BuildContext context) { final double spacing = MediaQuery.of(context).size.width / 32; final double runSpacing = spacing / 2; - return Center( + return Container( + color: Colors.white, + constraints: BoxConstraints.expand(), + alignment: Alignment.center, child: Wrap( spacing: spacing, runSpacing: runSpacing, |