1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Can toggle performances overlay

This commit is contained in:
2020-05-13 18:26:21 +02:00
parent a6ce969e89
commit 67e881af0d
4 changed files with 25 additions and 7 deletions

View File

@ -7,10 +7,13 @@ import 'package:flutter/cupertino.dart';
class ApplicationPreferences {
bool enableDarkMode;
bool forceMobileMode;
bool showPerformancesOverlay;
ApplicationPreferences({
@required this.enableDarkMode,
@required this.forceMobileMode,
@required this.showPerformancesOverlay,
}) : assert(enableDarkMode != null),
assert(forceMobileMode != null);
assert(forceMobileMode != null),
assert(showPerformancesOverlay != null);
}