mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-26 03:01:45 +08:00
19 lines
513 B
Dart
19 lines
513 B
Dart
import 'package:app_store_uri/app_store_uri.dart';
|
|
import 'package:smooth_app/main.dart';
|
|
import 'package:smooth_app/pages/scan/smooth_barcode_scanner_type.dart';
|
|
|
|
/// Fdroid version with:
|
|
/// - Barcode decoding algorithm: ZXing
|
|
/// - Intent to launch the review
|
|
void main() {
|
|
launchSmoothApp(
|
|
scanner: SmoothBarcodeScannerType.zxing,
|
|
store: URIAppStore(
|
|
Uri.parse(
|
|
'https://f-droid.org/fr/packages/openfoodfacts.github.scrachx.openfood/',
|
|
),
|
|
),
|
|
flavour: 'zxing-uri',
|
|
);
|
|
}
|