forked from firka/student-legacy
changed location of privacy button
This commit is contained in:
parent
fd9794f3bf
commit
75a2fa3726
@ -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:
|
||||
|
@ -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,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
Loading…
x
Reference in New Issue
Block a user