This commit is contained in:
Alessandro Autiero
2022-12-16 21:08:57 +01:00
parent ef7f34e0e3
commit 966b4b33fd
91 changed files with 388682 additions and 1005 deletions

View File

@@ -13,10 +13,10 @@ class PortInput extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Tooltip(
message: "The port of the lawin server",
message: "The port of the backend server",
child: Obx(() => SmartInput(
label: "Port",
placeholder: "Type the lawin server's port",
placeholder: "Type the backend server's port",
controller: _serverController.port,
enabled: _serverController.type.value != ServerType.embedded
))