diff options
Diffstat (limited to 'lib/result_screen.dart')
-rw-r--r-- | lib/result_screen.dart | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/result_screen.dart b/lib/result_screen.dart deleted file mode 100644 index 261d23f..0000000 --- a/lib/result_screen.dart +++ /dev/null @@ -1,18 +0,0 @@ -import 'package:flutter/material.dart'; - -class ResultScreen extends StatelessWidget { - final String text; - - const ResultScreen({super.key, required this.text}); - - @override - Widget build(BuildContext context) => Scaffold( - appBar: AppBar( - title: const Text('Result'), - ), - body: Container( - padding: const EdgeInsets.all(30.0), - child: Text(text), - ), - ); -}
\ No newline at end of file |