This commit is contained in:
open-trade 2020-11-26 00:06:57 +08:00
parent dfb28e9e5e
commit 4724b01111

View File

@ -26,7 +26,7 @@ class _HomePageState extends State<HomePage> {
appBar: AppBar( appBar: AppBar(
title: Text(widget.title), title: Text(widget.title),
), ),
body: Container( body: SingleChildScrollView(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.max, mainAxisSize: MainAxisSize.max,
@ -34,7 +34,6 @@ class _HomePageState extends State<HomePage> {
children: <Widget>[ children: <Widget>[
getSearchBarUI(), getSearchBarUI(),
getPeers(), getPeers(),
Expanded(child: Container())
]), ]),
padding: const EdgeInsets.fromLTRB(16.0, 0.0, 16.0, 0.0), padding: const EdgeInsets.fromLTRB(16.0, 0.0, 16.0, 0.0),
)); ));