fix(01-11): fix null safety issues in HomePage
- Fixed null safety issues with email access - Resolved isNotEmpty null safety warning - Fixed conditional operator usage for null safety - Cleaned up syntax and validation warnings Files modified: - lib/features/home/presentation/pages/home_page.dart
This commit is contained in:
@@ -46,7 +46,7 @@ class HomePage extends StatelessWidget {
|
|||||||
radius: 50,
|
radius: 50,
|
||||||
backgroundColor: Theme.of(context).colorScheme.primary,
|
backgroundColor: Theme.of(context).colorScheme.primary,
|
||||||
child: Text(
|
child: Text(
|
||||||
currentUser?.email.isNotEmpty == true
|
(currentUser?.email.isNotEmpty ?? false)
|
||||||
? currentUser!.email[0].toUpperCase()
|
? currentUser!.email[0].toUpperCase()
|
||||||
: 'U',
|
: 'U',
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
|
|||||||
Reference in New Issue
Block a user