chore: update quickstart for Windows

This commit is contained in:
Nick Fisher
2024-10-23 02:21:00 +11:00
parent cf7d8e45f4
commit f080720712

View File

@@ -118,7 +118,7 @@ class _MyHomePageState extends State<MyHomePage> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Stack(children: [ return Scaffold(body:Stack(children: [
if (_thermionViewer != null) if (_thermionViewer != null)
Positioned.fill( Positioned.fill(
child: ThermionWidget( child: ThermionWidget(
@@ -135,6 +135,6 @@ class _MyHomePageState extends State<MyHomePage> {
if (_thermionViewer == null) _loadButton(), if (_thermionViewer == null) _loadButton(),
if (_thermionViewer != null) _unloadButton(), if (_thermionViewer != null) _unloadButton(),
]))) ])))
]); ]));
} }
} }