this is what shows after login and its working. I need to display the code below whenever a user is not logged in.
Text(
'Hello,\n ${loggedInUser.firstName}',
style: const TextStyle(
color: cyan,
fontSize: 20,
),
),
i want to show this after logout
Text(
'Hello,\n please login',
style: const TextStyle(
color: cyan,
fontSize: 20,
),
),