From 2d9d9e3cf6e5dbb0b162cc3d085771e55a6084ed Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sun, 15 Oct 2023 14:02:27 +0300 Subject: Removed OCR from previous app. Changes to be committed: modified: lib/main.dart deleted: lib/result_screen.dart --- lib/result_screen.dart | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 lib/result_screen.dart (limited to 'lib/result_screen.dart') 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 -- cgit v1.2.3