From e862a70e60cb18823e72cfb363e59b4dd1d7f8ec Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Thu, 6 Jun 2024 06:00:10 +0200 Subject: [PATCH] skeletonizer more pretty --- app/lib/features/chat_archive/presentation/screens/detail.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/lib/features/chat_archive/presentation/screens/detail.dart b/app/lib/features/chat_archive/presentation/screens/detail.dart index f97e3e16..283d07b1 100644 --- a/app/lib/features/chat_archive/presentation/screens/detail.dart +++ b/app/lib/features/chat_archive/presentation/screens/detail.dart @@ -94,6 +94,7 @@ class ChatArchiveDetailScreen extends HookConsumerWidget { ), body: Skeletonizer( enabled: chatAsync.isLoading, + justifyMultiLineText: false, child: chatAsync.when( data: (data) => Markdown( data: data, @@ -129,7 +130,7 @@ class ChatArchiveDetailScreen extends HookConsumerWidget { ); }, loading: () => const Bone.multiText( - lines: 10, + lines: 15, ), ), ),