diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-10-15 14:02:27 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-10-15 14:02:27 +0300 |
commit | 2d9d9e3cf6e5dbb0b162cc3d085771e55a6084ed (patch) | |
tree | 8d354ff76b032676fe97722d5162ff0555c085e3 /lib/result_screen.dart | |
parent | 08ea143602204189caafc2ab3ed3c2ef1e555990 (diff) |
Removed OCR from previous app.
Changes to be committed:
modified: lib/main.dart
deleted: lib/result_screen.dart
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 |