|
|
|
@ -91,6 +91,9 @@ Widget misc(
|
|
|
|
|
border: Border.all(color: Colors.black45),
|
|
|
|
|
color: const Color.fromARGB(100, 30, 30, 30),
|
|
|
|
|
),
|
|
|
|
|
child: Tooltip(
|
|
|
|
|
message:
|
|
|
|
|
"Enables the root user, who has access to everything in the system",
|
|
|
|
|
child: CheckboxListTile(
|
|
|
|
|
title: const Text('Enable root user',
|
|
|
|
|
style: TextStyle(color: Colors.white)),
|
|
|
|
@ -115,6 +118,7 @@ Widget misc(
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Visibility(
|
|
|
|
|
child: const SizedBox(height: 10), visible: enableRoot),
|
|
|
|
|
Visibility(
|
|
|
|
@ -185,6 +189,8 @@ Widget misc(
|
|
|
|
|
border: Border.all(color: Colors.black45),
|
|
|
|
|
color: const Color.fromARGB(100, 30, 30, 30),
|
|
|
|
|
),
|
|
|
|
|
child: Tooltip(
|
|
|
|
|
message: "Enables ipv6",
|
|
|
|
|
child: CheckboxListTile(
|
|
|
|
|
title: const Text('Enable ipv6',
|
|
|
|
|
style: TextStyle(color: Colors.white)),
|
|
|
|
@ -209,6 +215,7 @@ Widget misc(
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: 10),
|
|
|
|
|
Container(
|
|
|
|
|
padding: const EdgeInsets.all(2),
|
|
|
|
@ -217,6 +224,9 @@ Widget misc(
|
|
|
|
|
border: Border.all(color: Colors.black45),
|
|
|
|
|
color: const Color.fromARGB(100, 30, 30, 30),
|
|
|
|
|
),
|
|
|
|
|
child: Tooltip(
|
|
|
|
|
message:
|
|
|
|
|
"Enables timeshift to automatically make backups",
|
|
|
|
|
child: CheckboxListTile(
|
|
|
|
|
title: const Text('Enable timeshift',
|
|
|
|
|
style: TextStyle(color: Colors.white)),
|
|
|
|
@ -230,7 +240,9 @@ Widget misc(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
),
|
|
|
|
|
padding: const EdgeInsets.fromLTRB(10, 10, 10, 13),
|
|
|
|
|
child: const Icon(Icons.restore, color: Colors.black),
|
|
|
|
|
child:
|
|
|
|
|
const Icon(Icons.restore, color: Colors.black),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|