summaryrefslogtreecommitdiff
path: root/lib/result_screen.dart
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-09-28 19:02:06 +0300
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-09-28 19:02:06 +0300
commit7606ef1d9872ca0466e57779aeaf0ce690cac69b (patch)
tree65c985972734ed2bb146abd578eaf8ced3c2eb1e /lib/result_screen.dart
parent549a51b021217a25426625a962ede562bb069191 (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.dart19
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