|
@@ -105,7 +105,7 @@ class _EmailEntryPageState extends State<EmailEntryPage> {
|
|
floatingActionButton: DynamicFAB(
|
|
floatingActionButton: DynamicFAB(
|
|
isKeypadOpen: isKeypadOpen,
|
|
isKeypadOpen: isKeypadOpen,
|
|
isFormValid: _isFormValid(),
|
|
isFormValid: _isFormValid(),
|
|
- buttonText: 'Create Account',
|
|
|
|
|
|
+ buttonText: 'Create account',
|
|
onPressedFunction: () {
|
|
onPressedFunction: () {
|
|
_config.setVolatilePassword(_passwordController1.text);
|
|
_config.setVolatilePassword(_passwordController1.text);
|
|
_config.setEmail(_email);
|
|
_config.setEmail(_email);
|
|
@@ -148,7 +148,7 @@ class _EmailEntryPageState extends State<EmailEntryPage> {
|
|
decoration: InputDecoration(
|
|
decoration: InputDecoration(
|
|
fillColor: _emailIsValid ? _validFieldValueColor : null,
|
|
fillColor: _emailIsValid ? _validFieldValueColor : null,
|
|
filled: true,
|
|
filled: true,
|
|
- hintText: 'email',
|
|
|
|
|
|
+ hintText: 'Email',
|
|
contentPadding:
|
|
contentPadding:
|
|
EdgeInsets.symmetric(horizontal: 16, vertical: 14),
|
|
EdgeInsets.symmetric(horizontal: 16, vertical: 14),
|
|
border: UnderlineInputBorder(
|
|
border: UnderlineInputBorder(
|
|
@@ -193,7 +193,7 @@ class _EmailEntryPageState extends State<EmailEntryPage> {
|
|
fillColor:
|
|
fillColor:
|
|
_passwordIsValid ? _validFieldValueColor : null,
|
|
_passwordIsValid ? _validFieldValueColor : null,
|
|
filled: true,
|
|
filled: true,
|
|
- hintText: "password",
|
|
|
|
|
|
+ hintText: "Password",
|
|
contentPadding:
|
|
contentPadding:
|
|
EdgeInsets.symmetric(horizontal: 16, vertical: 14),
|
|
EdgeInsets.symmetric(horizontal: 16, vertical: 14),
|
|
suffixIcon: _password1InFocus
|
|
suffixIcon: _password1InFocus
|
|
@@ -260,7 +260,7 @@ class _EmailEntryPageState extends State<EmailEntryPage> {
|
|
fillColor:
|
|
fillColor:
|
|
_passwordsMatch ? _validFieldValueColor : null,
|
|
_passwordsMatch ? _validFieldValueColor : null,
|
|
filled: true,
|
|
filled: true,
|
|
- hintText: "confirm password",
|
|
|
|
|
|
+ hintText: "Confirm password",
|
|
contentPadding: EdgeInsets.symmetric(
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: 16, vertical: 14),
|
|
horizontal: 16, vertical: 14),
|
|
suffixIcon: _password2InFocus
|
|
suffixIcon: _password2InFocus
|
|
@@ -372,7 +372,7 @@ class _EmailEntryPageState extends State<EmailEntryPage> {
|
|
// ),
|
|
// ),
|
|
// ),
|
|
// ),
|
|
Text(
|
|
Text(
|
|
- 'Password Strength: $passwordStrengthText',
|
|
|
|
|
|
+ 'Password strength: $passwordStrengthText',
|
|
style: TextStyle(
|
|
style: TextStyle(
|
|
color:
|
|
color:
|
|
passwordStrengthColor),
|
|
passwordStrengthColor),
|