Hide a bunch of expert-properties by default
This commit is contained in:
@@ -152,6 +152,12 @@ class _SettingsRootPageState extends State<SettingsRootPage> {
|
||||
title: Text('Show various helpful info boxes'),
|
||||
onToggle: (value) => AppSettings().update((p) => p.showInfoAlerts = !p.showInfoAlerts),
|
||||
),
|
||||
SettingsTile.switchTile(
|
||||
initialValue: cfg.showExtendedAttributes,
|
||||
leading: Icon(FontAwesomeIcons.solidSheetPlastic),
|
||||
title: Text('Show all attributes of entities'),
|
||||
onToggle: (value) => AppSettings().update((p) => p.showExtendedAttributes = !p.showExtendedAttributes),
|
||||
),
|
||||
],
|
||||
),
|
||||
SettingsSection(
|
||||
|
||||
Reference in New Issue
Block a user