diff --git a/lib/widgets/certs_received.dart b/lib/widgets/certs_received.dart index 192932e..32c274e 100644 --- a/lib/widgets/certs_received.dart +++ b/lib/widgets/certs_received.dart @@ -65,11 +65,9 @@ class CertsReceived extends StatelessWidget { // Build history list return SizedBox( height: windowHeight, - child: Expanded( - child: ListView( - key: keyListTransactions, - children: [certsView(result)], - ), + child: ListView( + key: keyListTransactions, + children: [certsView(result)], ), ); }, diff --git a/lib/widgets/certs_sent.dart b/lib/widgets/certs_sent.dart index a7a897d..689f7f5 100644 --- a/lib/widgets/certs_sent.dart +++ b/lib/widgets/certs_sent.dart @@ -65,11 +65,9 @@ class CertsSent extends StatelessWidget { // Build history list return SizedBox( height: windowHeight, - child: Expanded( - child: ListView( - key: keyListTransactions, - children: [certsView(result)], - ), + child: ListView( + key: keyListTransactions, + children: [certsView(result)], ), ); },