Merge pull request from notd5a-alt/patch

Decapitalized icon names and 4 references.
This commit is contained in:
AppFlowy.IO 2021-11-22 21:09:45 +08:00 committed by GitHub
commit b8eedf70c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
90 changed files with 6 additions and 6 deletions

@ -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,

@ -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,