Skip to content

Commit

Permalink
add deps and licensing
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinschumacher committed Dec 27, 2024
1 parent 25dc42a commit 78bcb53
Show file tree
Hide file tree
Showing 11 changed files with 4,248 additions and 47 deletions.
7 changes: 7 additions & 0 deletions assets/docs/info_en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Super Simple Scan is an easy-to-use, no-frills document scanning app.

Source code: https://github.com/merlinschumacher/supersimplescan.

The application doesn't access, store or share any personal data and comes withour any warranty or liability.

© Merlin Schumacher
7 changes: 6 additions & 1 deletion lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"@@locale": "en",
"appName": "Super Simple Scan",
"@appName": {
"description": "The name of the app."
},
"scanStartButton": "Start scan",
"@scanStartButton": {
"description": "The button to start the scan"
Expand Down Expand Up @@ -34,7 +38,8 @@
}
}
},
"infoPageText": "Super Simple Scan is an easy-to-use, no-frills document scanning app.\nSource code: <a href='https://github.com/merlinschumacher/supersimplescan'>https://github.com/merlinschumacher/supersimplescan</a>\n&copy; Merlin Schumacher.\nThe application doesn't access, store or share any personal data.
"infoPageTextFile": "info_en.md",
"infoPageText": "Super Simple Scan is an easy-to-use, no-frills document scanning app.\nSource code: <a href='https://github.com/merlinschumacher/supersimplescan'>https://github.com/merlinschumacher/supersimplescan</a>\n&copy; Merlin Schumacher.\nThe application doesn't access, store or share any personal data.",
"@infoPageText": {
"description": "The body text of the info page"
}
Expand Down
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:google_mlkit_document_scanner/google_mlkit_document_scanner.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:dynamic_color/dynamic_color.dart';
import 'package:super_simple_scan/views/home_view.dart';

void main() {
WidgetsFlutterBinding.ensureInitialized();
Expand Down Expand Up @@ -43,7 +43,7 @@ class SuperSimpleScan extends StatelessWidget {
Locale('en'),
Locale('de'),
],
home: HomePage(title: "Super Simple Scan"),
home: HomePage(),
);
});
}
Expand Down
Loading

0 comments on commit 78bcb53

Please sign in to comment.