Skip to content
Snippets Groups Projects
Commit 6891df98 authored by poka's avatar poka
Browse files

Fix scrollable wallet list

parent f430facf
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,8 @@ class WalletsHome extends StatelessWidget { ...@@ -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 { ...@@ -113,7 +114,7 @@ class WalletsHome extends StatelessWidget {
})); }));
}, },
) )
]); ]));
} }
Widget addNewDerivation(context, int _walletNbr) { Widget addNewDerivation(context, int _walletNbr) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment