diff --git a/README.md b/README.md index ce4054b..a950214 100644 --- a/README.md +++ b/README.md @@ -1,39 +1,13 @@ +# Flutter ZXing -# ZXScanner - -
-
-
--All screenshots for iOS were generated using [Fastlane Snap](https://docs.fastlane.tools/actions/snapshot/). To generate your own, run the command: - -```bash -cd zxscanner/ios -bundle exec fastlane screenshots -``` - -## Flutter ZXing - -Flutter ZXing is a Flutter plugin for scanning and generating QR codes using the ZXing (Zebra Crossing) barcode scanning library. The plugin is implemented using the Dart FFI (Foreign Function Interface) and the [zxing-cpp](https://github.com/zxing-cpp/zxing-cpp) library, and allows you to easily integrate barcode scanning and generation functionality into your Flutter apps. - ## Features - Scan QR codes and barcodes from the camera stream (on mobile platforms only), image file or URL @@ -72,6 +46,16 @@ In addition, flutter_zxing uses the camera plugin to access the device's camera This README file was mainly generated using ChatGPT, a tool that generates human-like text. +## ZXScanner + +ZXScanner is a free QR code and barcode scanner app for Android and iOS. It is built using Flutter and the [flutter_zxing](https://github.com/khoren93/flutter_zxing) plugin. + +![]()
+
![]()
![]()
+
+
+
+
+
+
+-For help getting started with Flutter development, view the -[online documentation](https://docs.flutter.dev/), which offers tutorials, -samples, guidance on mobile development, and a full API reference. +All screenshots for iOS were generated using [Fastlane Snap](https://docs.fastlane.tools/actions/snapshot/). To generate your own, run the command: + +```bash +cd zxscanner/ios +bundle exec fastlane screenshots +``` diff --git a/zxscanner/lib/configs/app_theme.dart b/zxscanner/lib/configs/app_theme.dart index 72309a7..de251ad 100644 --- a/zxscanner/lib/configs/app_theme.dart +++ b/zxscanner/lib/configs/app_theme.dart @@ -10,11 +10,15 @@ class AppTheme { colors: FlexColor.schemesList[appStore.colorSchemeIndex].light, surfaceMode: FlexSurfaceMode.highScaffoldLevelSurface, blendLevel: 12, + useMaterial3: true, + useMaterial3ErrorColors: true, ); static ThemeData flexDarkTheme() => FlexThemeData.dark( colors: FlexColor.schemesList[appStore.colorSchemeIndex].dark, surfaceMode: FlexSurfaceMode.highScaffoldLevelSurface, blendLevel: 6, + useMaterial3: true, + useMaterial3ErrorColors: true, ); }![]()
+