From 0824e67b3fc8a321355663bdae5911d3f6475007 Mon Sep 17 00:00:00 2001 From: shilangyu Date: Mon, 31 Aug 2020 23:05:04 +0200 Subject: [PATCH] better 'no bio' text --- lib/widgets/user_profile.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/user_profile.dart b/lib/widgets/user_profile.dart index 53beb06..1a6e22d 100644 --- a/lib/widgets/user_profile.dart +++ b/lib/widgets/user_profile.dart @@ -53,7 +53,7 @@ class UserProfile extends HookWidget { if (user.bio == null) Center( child: Text( - 'No bio.', + 'no bio', style: const TextStyle(fontStyle: FontStyle.italic), ), )