Fix scrollable wallet list

This commit is contained in:
poka 2021-02-15 02:37:00 +01:00
parent f430facfb5
commit 6891df981e
1 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,8 @@ class WalletsHome extends StatelessWidget {
List _listWallets = myWalletProvider.listWallets.split('\n'); List _listWallets = myWalletProvider.listWallets.split('\n');
return Column(children: <Widget>[ return Expanded(
child: ListView(children: <Widget>[
SizedBox(height: 8), SizedBox(height: 8),
for (String _repository in _listWallets) for (String _repository in _listWallets)
ListTile( ListTile(
@ -113,7 +114,7 @@ class WalletsHome extends StatelessWidget {
})); }));
}, },
) )
]); ]));
} }
Widget addNewDerivation(context, int _walletNbr) { Widget addNewDerivation(context, int _walletNbr) {