chore: stub ThermionWidget methods

This commit is contained in:
Nick Fisher
2024-09-05 17:51:36 +08:00
parent 2a8122e280
commit 4909f4395d

View File

@@ -1,7 +1,13 @@
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:thermion_flutter_ffi/thermion_flutter_ffi.dart';
import 'package:thermion_flutter_web/thermion_flutter_web_options.dart';
class ThermionWidgetWeb extends StatefulWidget {
final ThermionFlutterWebOptions options;
const ThermionWidgetWeb({super.key, required this.options});
@override
State<StatefulWidget> createState() => throw Exception();
}