runevm_fl 0.3.0-hotfix.1
runevm_fl: ^0.3.0-hotfix.1 copied to clipboard
Rune Bindings and Forge deployment for Flutter Containerization for TinyML/Mobile Applications on Tiny/Mobile devices.
example/lib/main.dart
// @dart=2.9
import 'package:flutter/material.dart';
import 'dart:async';
import '2048/home_mobile.dart' if (dart.library.js) '2048/home_web.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(home: HomePage());
}
}