mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
@@ -126,17 +126,18 @@ class _ServerEditPageState extends State<ServerEditPage> {
|
||||
'${l10n.delete} ${l10n.server}(${widget.spi!.name})',
|
||||
)),
|
||||
UIs.height13,
|
||||
if (widget.spi?.server?.canViewDetails ?? false) Row(
|
||||
children: [
|
||||
Checkbox(
|
||||
value: delScripts,
|
||||
onChanged: (_) => setState(
|
||||
() => delScripts = !delScripts,
|
||||
if (widget.spi?.server?.canViewDetails ?? false)
|
||||
Row(
|
||||
children: [
|
||||
Checkbox(
|
||||
value: delScripts,
|
||||
onChanged: (_) => setState(
|
||||
() => delScripts = !delScripts,
|
||||
),
|
||||
),
|
||||
),
|
||||
Text(l10n.deleteScripts),
|
||||
],
|
||||
)
|
||||
Text(l10n.deleteScripts),
|
||||
],
|
||||
)
|
||||
],
|
||||
);
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user