From 11f0e25b0aaf42a4b96722cab599a8cb132b5ca1 Mon Sep 17 00:00:00 2001 From: Mainak Dey <81181897+Mainakdey1@users.noreply.github.com> Date: Thu, 2 Dec 2021 17:26:08 +0530 Subject: [PATCH 1/2] Update registerScreen.dart --- lib/screens/registerScreen.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/screens/registerScreen.dart b/lib/screens/registerScreen.dart index 911e973..34d62b9 100644 --- a/lib/screens/registerScreen.dart +++ b/lib/screens/registerScreen.dart @@ -38,7 +38,6 @@ class _RegisterScreenState extends State { await showDialog( context: context, builder: (context) => AlertDialog( - title: Text(message), content: Text(message), ), ).then( @@ -134,7 +133,7 @@ class _RegisterScreenState extends State { TextFormField( obscureText: true, decoration: inputDecoration.copyWith( - labelText: 'Password', + labelText: 'Confirm Password', ), validator: (value) { if (_confirmPassword.compareTo(_password) != 0) { @@ -166,7 +165,7 @@ class _RegisterScreenState extends State { ), const Flexible( child: Text( - 'I acknowledge I have read and agree to enviroCar\'s Terms and Conditions'), + 'I acknowledge that I have read and agree to enviroCar\'s Terms and Conditions'), ), ], ), @@ -246,7 +245,7 @@ class _RegisterScreenState extends State { _showDialogbox('Email already in use'); } else { _logger.w('Unknown error while registering'); - _showDialogbox('Some other error'); + _showDialogbox('An error was encountered.Please try again.'); } } }, From 9fb6657a5d999ee27e56f076b595bdeb948ca90c Mon Sep 17 00:00:00 2001 From: Mainak Dey <81181897+Mainakdey1@users.noreply.github.com> Date: Thu, 2 Dec 2021 17:36:00 +0530 Subject: [PATCH 2/2] Update settingsValues.dart --- lib/values/settingsValues.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/values/settingsValues.dart b/lib/values/settingsValues.dart index 246dab3..52e4dce 100644 --- a/lib/values/settingsValues.dart +++ b/lib/values/settingsValues.dart @@ -48,7 +48,7 @@ List OBDModeSettings = [ SettingsTileModel( title: 'Diesel Consumption Estimation', subtitle: - 'Enables the estimation of consumption values for diesel. NOTE: This feature is just a beta feature.', + 'Enables the estimation of consumption values for diesel. NOTE: This is a beta feature.', isChecked: false, ), ]; @@ -58,13 +58,13 @@ List GPSModeSettings = [ SettingsTileModel( title: 'Enable GPS based track recording', subtitle: - "Activates an additional recording mode that enables the recording of plain GPS based tracks that does not require an OBD-II adapter.\n\nNOTE: This feature is just a beta feature.", + "Activates an additional recording mode that enables the recording of plain GPS based tracks that does not require an OBD-II adapter.\n\nNOTE: This is a beta feature.", isChecked: false, ), SettingsTileModel( title: 'Automatic Recording (GPS)', subtitle: - 'Activates automatic recording of GPS-based trips based on activity detection mechanisms.\n\nNote: This Android function does not work reliably on some smartphone models.', + 'Activates automatic recording of GPS-based trips based on activity detection mechanisms.\n\nNOTE: This Android function does not work reliably on some smartphone models.', isChecked: false, ), ];