mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Can toggle performances overlay
This commit is contained in:
@ -67,6 +67,8 @@ class _ApplicationSettingsState extends State<ApplicationSettings> {
|
||||
SettingsSection _buildDebugSection() => SettingsSection(
|
||||
title: tr("Debug features"),
|
||||
tiles: [
|
||||
|
||||
// Force mobile mode
|
||||
_PreferencesSettingsTile(
|
||||
preferencesKey: PreferencesKeyList.FORCE_MOBILE_MODE,
|
||||
title: tr("Force mobile mode"),
|
||||
@ -75,6 +77,15 @@ class _ApplicationSettingsState extends State<ApplicationSettings> {
|
||||
onChange: _updatedSettings,
|
||||
helper: _preferencesHelper,
|
||||
),
|
||||
|
||||
// Show performances overlay
|
||||
_PreferencesSettingsTile(
|
||||
preferencesKey: PreferencesKeyList.SHOW_PERFORMANCE_OVERLAY,
|
||||
title: tr("Show performances overlay"),
|
||||
subtitle: null,
|
||||
onChange: _updatedSettings,
|
||||
helper: _preferencesHelper,
|
||||
),
|
||||
],
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user