diff --git a/lib/main.dart b/lib/main.dart index f6c435a..a6556b2 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -429,30 +429,36 @@ class _MyHomePageState extends State { ); final bodyComponentLogs = Center( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Padding( - padding: EdgeInsets.all(20), - child: Card( - child: ValueListenableBuilder( - valueListenable: widget.errorNotifier, - builder: (context, error, child) { - if (error != null) { - return Text( - "Error: $error", - style: TextStyle(color: Colors.red, fontSize: 15), - ); - } - return Text("No exceptions captured yet."); - }, + child: SingleChildScrollView( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Padding( + padding: EdgeInsets.all(20), + child: Card( + child: Padding( + padding: EdgeInsets.all(20), + child: ValueListenableBuilder( + valueListenable: widget.errorNotifier, + builder: (context, error, child) { + if (error != null) { + return Text( + "Error: $error", + style: TextStyle(color: Colors.red, fontSize: 15), + ); + } + return Text("No exceptions captured yet."); + }, + ), + ), ), ), - ), - ], + ], + ), ), ); + final actionButtonLogs = FloatingActionButton( final actionButtonInfo = FloatingActionButton( onPressed: () => obtainKeyPair(regenerate: true), tooltip: 'Regenerate Key',