change % in top bar
continuous-integration/drone/push Build is passing Details

VERIFY_MAIL_EKA
Lucas Delanier 2 years ago
parent d1565f7c2e
commit ddcfdc9d99

@ -369,7 +369,7 @@ class _RegistrationScreenState extends State<RegistrationScreen> {
borderRadius: BorderRadius.circular(10.0), borderRadius: BorderRadius.circular(10.0),
child: LinearProgressIndicator( child: LinearProgressIndicator(
minHeight: 5, minHeight: 5,
value: 0.5, value: 0.1,
backgroundColor: grayColor, backgroundColor: grayColor,
color: primaryColor, color: primaryColor,
), ),

@ -76,10 +76,7 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
SnackBar( SnackBar(
content: Text( content: Text(
e.toString() ?? "", e.toString() ?? "",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w400, fontSize: 20.h),
color: Colors.white,
fontWeight: FontWeight.w400,
fontSize: 20.h),
), ),
backgroundColor: Colors.red, backgroundColor: Colors.red,
), ),
@ -103,9 +100,7 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
child: Align( child: Align(
child: SizedBox( child: SizedBox(
width: 56.h, width: 56.h,
child: Image( child: Image(image: AssetImage("assets/images/plane_icon.png")),
image:
AssetImage("assets/images/plane_icon.png")),
), ),
)), )),
Padding( Padding(
@ -113,9 +108,7 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
child: AutoSizeText( child: AutoSizeText(
"Verification de ton Email", "Verification de ton Email",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 24.w),
fontWeight: FontWeight.w600,
fontSize: 24.w),
maxLines: 1, maxLines: 1,
maxFontSize: 30, maxFontSize: 30,
overflow: TextOverflow.fade, overflow: TextOverflow.fade,
@ -136,9 +129,7 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
child: AutoSizeText( child: AutoSizeText(
"Nous vous avons envoyé un lien de confirmation a l'adresse ${MyApp.userViewModel.userCurrent.mail}.\nVeuillez verifier votre messagerie et cliquer sur le lien pour vérifier votre Email.", "Nous vous avons envoyé un lien de confirmation a l'adresse ${MyApp.userViewModel.userCurrent.mail}.\nVeuillez verifier votre messagerie et cliquer sur le lien pour vérifier votre Email.",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white, color: Colors.white, fontWeight: FontWeight.w100, fontSize: 16.w),
fontWeight: FontWeight.w100,
fontSize: 16.w),
maxFontSize: 20, maxFontSize: 20,
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),
@ -168,9 +159,7 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
text: TextSpan( text: TextSpan(
text: 'Renvoyer lEmail de confirmation', text: 'Renvoyer lEmail de confirmation',
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
fontSize: 15, fontSize: 15, fontWeight: FontWeight.w400, color: primaryColor),
fontWeight: FontWeight.w400,
color: primaryColor),
), ),
), ),
), ),
@ -189,9 +178,7 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
text: TextSpan( text: TextSpan(
text: 'Revenir a létape précédente', text: 'Revenir a létape précédente',
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
fontSize: 15, fontSize: 15, fontWeight: FontWeight.w400, color: primaryColor),
fontWeight: FontWeight.w400,
color: primaryColor),
), ),
), ),
), ),
@ -206,13 +193,12 @@ class _VerifyEmailScreenState extends State<VerifyEmailScreen> {
child: ConstrainedBox( child: ConstrainedBox(
constraints: BoxConstraints(maxWidth: 800), constraints: BoxConstraints(maxWidth: 800),
child: Padding( child: Padding(
padding: EdgeInsets.only( padding: EdgeInsets.only(top: 45.h, left: defaultPadding, right: defaultPadding),
top: 45.h, left: defaultPadding, right: defaultPadding),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(10.0), borderRadius: BorderRadius.circular(10.0),
child: LinearProgressIndicator( child: LinearProgressIndicator(
minHeight: 5, minHeight: 5,
value: 0.75, value: 0.5,
backgroundColor: grayColor, backgroundColor: grayColor,
color: primaryColor, color: primaryColor,
), ),

Loading…
Cancel
Save