Switched to getx for state management

Fixed last remaining bug
This commit is contained in:
Alessandro Autiero
2022-09-06 14:19:45 +02:00
parent 94eaa2abb0
commit e36c0762aa
7 changed files with 329 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import 'package:fluent_ui/fluent_ui.dart';
class RestartWarning extends StatelessWidget {
const RestartWarning({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const InfoBar(
title: Text('Node Installation'),
content: Text('Restart the launcher to run the server'),
isLong: true,
severity: InfoBarSeverity.warning
);
}
}