Commit a6c61a0
Changed files (2)
lib
l10n
screens
lib/l10n/app_en.arb
@@ -428,6 +428,8 @@
"@note": {},
"color": "Color",
"@color": {},
- "exportConfigDB": "export config.db",
- "configDBExplainer": "The config.db does not include all configuration info. For more debug information use the copy button at the top."
+ "exportConfigDB": "export config.db",,,
+ "@exportConfigDB": {},
+ "configDBExplainer": "The config.db does not include all configuration info. For more debug information use the copy button at the top.",
+ "@configDBExplainer": {}
}
lib/screens/error_reporting.dart
@@ -99,7 +99,7 @@ class ErrorScreen extends StatelessWidget {
TextButton(
onPressed: () async {
try {
- var dbPath = await getDatabasesPath();
+ String dbPath = await getDatabasesPath();
assert(dbPath != inMemoryDatabasePath);
dbPath = join(dbPath, 'blood_pressure.db');
@@ -117,7 +117,7 @@ class ErrorScreen extends StatelessWidget {
TextButton(
onPressed: () async {
try {
- var dbPath = await getDatabasesPath();
+ String dbPath = await getDatabasesPath();
assert(dbPath != inMemoryDatabasePath);
dbPath = join(dbPath, 'config.db');