mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
Switched to getx for state management
Fixed last remaining bug
This commit is contained in:
15
lib/src/widget/restart_warning.dart
Normal file
15
lib/src/widget/restart_warning.dart
Normal 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
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user