custom profile fixes

This commit is contained in:
2023-02-25 21:10:05 -05:00
parent 1bd7a62d15
commit ba21c70566
2 changed files with 8 additions and 5 deletions

View File

@@ -1,5 +1,4 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutterfire_ui/auth.dart';
import 'package:persistent_bottom_nav_bar/persistent_tab_view.dart'; import 'package:persistent_bottom_nav_bar/persistent_tab_view.dart';
import 'profile_screen_custom.dart'; import 'profile_screen_custom.dart';
import 'main_screen.dart'; import 'main_screen.dart';

View File

@@ -111,10 +111,14 @@ class _EmailVerificationBadgeState extends State<EmailVerificationBadge> {
if (state == EmailVerificationState.pending) if (state == EmailVerificationState.pending)
Row( Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(width: 16),
Wrap(
children: const [ children: const [
LoadingIndicator(size: 16, borderWidth: 0.5), Text('Log out and log back in to confirm.'),
SizedBox(width: 16), ],
Text('Waiting for email verification'), ),
], ],
) )
else else