mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 07:15:35 +01:00
Update language.tsx
This commit is contained in:
parent
fdaa5cda39
commit
7e99a7b644
1 changed files with 8 additions and 1 deletions
|
@ -51,7 +51,14 @@ const Language: React.FC = () => {
|
|||
};
|
||||
|
||||
return (
|
||||
<View />
|
||||
<FlatList
|
||||
style={[styles.flex, stylesHook.flex]}
|
||||
keyExtractor={(_item, index) => `${index}`}
|
||||
data={AvailableLanguages as { label: string; value: string; isRTL: boolean }[]}
|
||||
renderItem={renderItem}
|
||||
initialNumToRender={25}
|
||||
contentInsetAdjustmentBehavior="automatic"
|
||||
/>
|
||||
);
|
||||
};
|
||||
// @ts-ignore: Fix later
|
||||
|
|
Loading…
Add table
Reference in a new issue