Skip to content

Instantly share code, notes, and snippets.

@SmiffyKMc
Created June 24, 2022 11:21
Show Gist options
  • Save SmiffyKMc/bf85f840e4afdc0446fc11f812f15336 to your computer and use it in GitHub Desktop.
Save SmiffyKMc/bf85f840e4afdc0446fc11f812f15336 to your computer and use it in GitHub Desktop.
The home file
import 'package:flutter/material.dart';
import 'package:tflite_image_classification/tflite_model.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const TfliteModel(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment