Update debug mode warning

This commit is contained in:
Hillel Coren 2021-03-01 17:07:42 +02:00
parent 51ebe7b40b
commit 9e912f2870
1 changed files with 5 additions and 2 deletions

View File

@ -249,10 +249,13 @@ class MenuDrawer extends StatelessWidget {
child: IconText( child: IconText(
icon: Icons.warning, icon: Icons.warning,
text: localization.debugModeIsEnabled, text: localization.debugModeIsEnabled,
style: TextStyle(color: Colors.white),
), ),
), ),
subtitle: subtitle: Text(
Text(localization.debugModeIsEnabledHelp), localization.debugModeIsEnabledHelp,
style: TextStyle(color: Colors.white),
),
onTap: () => launch(kDebugModeUrl), onTap: () => launch(kDebugModeUrl),
), ),
DrawerTile( DrawerTile(