Switched to embedded lawin server if node is not available

Requested by microsoft
This commit is contained in:
Alessandro Autiero
2022-09-15 18:30:27 +02:00
parent c9f99d98d2
commit 273214ceef
11 changed files with 67 additions and 142 deletions

View File

@@ -84,8 +84,8 @@ class _HomePageState extends State<HomePage> with WindowListener {
List<Widget> _createPages(bool data) {
return [
data ? LauncherPage() : _createDownloadWarning(),
ServerPage(),
data ? const LauncherPage() : _createDownloadWarning(),
const ServerPage(),
const InfoPage()
];
}