diff options
author | Hailey <me@haileyok.com> | 2024-05-20 21:04:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 21:04:19 -0700 |
commit | 1ec4e0a867bf161121a6113eeaa8ad149219e344 (patch) | |
tree | 483e0cdfbe8aba73766f9bfcbb405cb88745c467 /src/screens/Messages/List/index.tsx | |
parent | b89e4ded2faf064ceed63bdf3e0c3d0124903b12 (diff) | |
download | voidsky-1ec4e0a867bf161121a6113eeaa8ad149219e344.tar.zst |
Make list end text customizable (#4145)
* only try to initialize once * nit * change to `You have reached the end` * make the text at end of list customizable * make the text at end of list customizable * update intl
Diffstat (limited to 'src/screens/Messages/List/index.tsx')
-rw-r--r-- | src/screens/Messages/List/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screens/Messages/List/index.tsx b/src/screens/Messages/List/index.tsx index a0a1d4f80..26b6df23b 100644 --- a/src/screens/Messages/List/index.tsx +++ b/src/screens/Messages/List/index.tsx @@ -250,6 +250,8 @@ export function MessagesScreen({navigation, route}: Props) { onRetry={fetchNextPage} style={{borderColor: 'transparent'}} hasNextPage={hasNextPage} + showEndMessage={true} + endMessageText={_(msg`No more conversations to show`)} /> } onEndReachedThreshold={isNative ? 1.5 : 0} |