diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-09-28 19:02:06 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-09-28 19:02:06 +0300 |
commit | 7606ef1d9872ca0466e57779aeaf0ce690cac69b (patch) | |
tree | 65c985972734ed2bb146abd578eaf8ced3c2eb1e /lib/result_screen.dart | |
parent | 549a51b021217a25426625a962ede562bb069191 (diff) |
Getting basic functionalities over from the OCR app like the camera.
Changes to be committed:
modified: lib/main.dart
new file: lib/result_screen.dart
modified: pubspec.lock
modified: pubspec.yaml
modified: test/widget_test.dart
Diffstat (limited to 'lib/result_screen.dart')
-rw-r--r-- | lib/result_screen.dart | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/result_screen.dart b/lib/result_screen.dart new file mode 100644 index 0000000..d5a64ea --- /dev/null +++ b/lib/result_screen.dart @@ -0,0 +1,19 @@ +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( + //backgroundColor: Theme.of(context).colorScheme.inversePrimary, + title: const Text('Result'), + ), + body: Container( + padding: const EdgeInsets.all(30.0), + child: Text(text), + ), + ); +}
\ No newline at end of file |