From 4724b0111172c80cd73e69589d9c888e6a0c0e2d Mon Sep 17 00:00:00 2001 From: open-trade Date: Thu, 26 Nov 2020 00:06:57 +0800 Subject: [PATCH] scroll --- flutter_hbb/lib/home_page.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flutter_hbb/lib/home_page.dart b/flutter_hbb/lib/home_page.dart index 62157b6b0..7edb4add1 100644 --- a/flutter_hbb/lib/home_page.dart +++ b/flutter_hbb/lib/home_page.dart @@ -26,7 +26,7 @@ class _HomePageState extends State { appBar: AppBar( title: Text(widget.title), ), - body: Container( + body: SingleChildScrollView( child: Column( mainAxisAlignment: MainAxisAlignment.start, mainAxisSize: MainAxisSize.max, @@ -34,7 +34,6 @@ class _HomePageState extends State { children: [ getSearchBarUI(), getPeers(), - Expanded(child: Container()) ]), padding: const EdgeInsets.fromLTRB(16.0, 0.0, 16.0, 0.0), ));