We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f3bf8 commit f24bf64Copy full SHA for f24bf64
lib/main.dart
@@ -15,10 +15,10 @@ Future<void> main() async {
15
final cameras = await availableCameras();
16
final firstCamera = cameras.first;
17
18
-
19
runApp(
20
MaterialApp(
21
theme: ThemeData.dark(),
+ debugShowCheckedModeBanner: false,
22
home: TakePictureScreen(
23
// Pass the appropriate camera to the TakePictureScreen widget.
24
camera: firstCamera,
@@ -271,9 +271,7 @@ class _DisplayPictureScreenState extends State<DisplayPictureScreen> {
271
272
loadModel() async {
273
await Tflite.loadModel(
274
- model: "assets/model_unquant.tflite",
275
- labels: "assets/labels.txt"
276
- );
+ model: "assets/model_unquant.tflite", labels: "assets/labels.txt");
277
}
278
279
@override
0 commit comments