changed location of privacy button

This commit is contained in:
Kima
2024-08-16 11:48:41 +02:00
parent fd9794f3bf
commit 75a2fa3726
2 changed files with 13 additions and 13 deletions

View File

@@ -293,6 +293,18 @@ class LoginScreenState extends State<LoginScreen> {
),
),
const SizedBox(height: 8),
// privacy policy
GestureDetector(
onTap: () => PrivacyView.show(context),
child: Text(
'privacy'.i18n,
style: TextStyle(
color: AppColors.of(context).loginSecondary,
fontWeight: FontWeight.w500,
fontSize: 14.0,
),
),
),
],
),
),
@@ -320,18 +332,6 @@ class LoginScreenState extends State<LoginScreen> {
textAlign: TextAlign.center,
),
),
// privacy policy
GestureDetector(
onTap: () => PrivacyView.show(context),
child: Text(
'privacy'.i18n,
style: TextStyle(
color: AppColors.of(context).loginSecondary,
fontWeight: FontWeight.w500,
fontSize: 14.0,
),
),
),
],
),
),