From 838c85c5f232ab6d4b790e319adf1f574df613f1 Mon Sep 17 00:00:00 2001 From: notd5a-alt Date: Mon, 22 Nov 2021 12:13:45 +0000 Subject: [PATCH] changed 2 references to HIde and Show into hide and show --- .../app_flowy/lib/user/presentation/sign_in_screen.dart | 4 ++-- .../app_flowy/lib/user/presentation/sign_up_screen.dart | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/app_flowy/lib/user/presentation/sign_in_screen.dart b/frontend/app_flowy/lib/user/presentation/sign_in_screen.dart index 18c04130af..a21a79e7d7 100644 --- a/frontend/app_flowy/lib/user/presentation/sign_in_screen.dart +++ b/frontend/app_flowy/lib/user/presentation/sign_in_screen.dart @@ -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, diff --git a/frontend/app_flowy/lib/user/presentation/sign_up_screen.dart b/frontend/app_flowy/lib/user/presentation/sign_up_screen.dart index e65e8daac3..e21b240d69 100644 --- a/frontend/app_flowy/lib/user/presentation/sign_up_screen.dart +++ b/frontend/app_flowy/lib/user/presentation/sign_up_screen.dart @@ -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,