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

@ -51,7 +51,7 @@ class ActiveSponsorCard extends StatelessWidget {
return const SizedBox();
}
Color? glow = Colors.white; //TODO: only temp fix kima (idk what but die)
Color? glow = Colors.white;
switch (level) {
case PremiumFeatureLevel.cap:

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,
),
),
),
],
),
),