changed 2 references to HIde and Show into hide and show

This commit is contained in:
notd5a-alt 2021-11-22 12:13:45 +00:00
parent 9fc5d628b0
commit 838c85c5f2
2 changed files with 6 additions and 6 deletions

View File

@ -168,8 +168,8 @@ class PasswordTextField extends StatelessWidget {
return RoundedInputField(
obscureText: true,
style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
obscureIcon: svg("home/Hide"),
obscureHideIcon: svg("home/Show"),
obscureIcon: svg("home/hide"),
obscureHideIcon: svg("home/show"),
hintText: 'Password',
normalBorderColor: theme.shader4,
highlightBorderColor: theme.red,

View File

@ -132,8 +132,8 @@ class PasswordTextField extends StatelessWidget {
builder: (context, state) {
return RoundedInputField(
obscureText: true,
obscureIcon: svg("home/Hide"),
obscureHideIcon: svg("home/Show"),
obscureIcon: svg("home/hide"),
obscureHideIcon: svg("home/show"),
style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
hintText: "Password",
normalBorderColor: theme.shader4,
@ -160,8 +160,8 @@ class RepeatPasswordTextField extends StatelessWidget {
builder: (context, state) {
return RoundedInputField(
obscureText: true,
obscureIcon: svg("home/Hide"),
obscureHideIcon: svg("home/Show"),
obscureIcon: svg("home/hide"),
obscureHideIcon: svg("home/show"),
style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
hintText: "Repeate password",
normalBorderColor: theme.shader4,