diff --git a/lib/l10n/intl_en.arb b/lib/l10n/intl_en.arb index 6edca2751..7ac4a0c90 100644 --- a/lib/l10n/intl_en.arb +++ b/lib/l10n/intl_en.arb @@ -1609,7 +1609,7 @@ "type": "text", "placeholders": {} }, - "startYourFirstChat": "Start your first chat :-)", + "startYourFirstChat": "Start your first chat right now! 🙂\n- Tap on "+"\n- Enter the username of a friend\n- Have fun chatting", "@startYourFirstChat": { "type": "text", "placeholders": {} diff --git a/lib/views/chat_list.dart b/lib/views/chat_list.dart index 2478a4d74..305359513 100644 --- a/lib/views/chat_list.dart +++ b/lib/views/chat_list.dart @@ -283,23 +283,27 @@ class _ChatListState extends State { searchController.text.toLowerCase() ?? ''))); if (rooms.isEmpty && (!searchMode)) { - return Center( - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - Icon( - searchMode - ? Icons.search_outlined - : Icons.chat_bubble_outline, - size: 80, + return Column( + mainAxisAlignment: MainAxisAlignment.center, + mainAxisSize: MainAxisSize.min, + children: [ + Icon( + searchMode + ? Icons.search_outlined + : Icons.maps_ugc_outlined, + size: 80, + color: Colors.grey, + ), + Text( + searchMode + ? L10n.of(context).noRoomsFound + : L10n.of(context).startYourFirstChat, + style: TextStyle( color: Colors.grey, + fontSize: 16, ), - Text(searchMode - ? L10n.of(context).noRoomsFound - : L10n.of(context) - .startYourFirstChat), - ], - ), + ), + ], ); } final totalCount = rooms.length;