diff options
Diffstat (limited to 'lib/result_screen.dart')
-rw-r--r-- | lib/result_screen.dart | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/result_screen.dart b/lib/result_screen.dart index d5a64ea..0d47962 100644 --- a/lib/result_screen.dart +++ b/lib/result_screen.dart @@ -8,12 +8,11 @@ class ResultScreen extends StatelessWidget { @override Widget build(BuildContext context) => Scaffold( appBar: AppBar( - //backgroundColor: Theme.of(context).colorScheme.inversePrimary, title: const Text('Result'), ), body: Container( padding: const EdgeInsets.all(30.0), - child: Text(text), + child: SelectableText(text), ), ); }
\ No newline at end of file |