mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
Merge branch 'master' into del
This commit is contained in:
commit
99939232a8
2 changed files with 7 additions and 4 deletions
|
@ -525,6 +525,7 @@
|
|||
"no_ln_wallet_error": "قبل از پرداخت یک صورتحساب لایتنینگ، ابتدا باید یک کیف پول لایتنینگ اضافه کنید.",
|
||||
"looks_like_bip38": "این به کلید خصوصی محافظتشده با گذرواژه (BIP38) شباهت دارد.",
|
||||
"reorder_title": "بازچینی کیف پولها",
|
||||
"reorder_instructions": "روی یک کیف پول بزنید و نگه دارید تا آن را در لیست جابهجا کنید.",
|
||||
"please_continue_scanning": "لطفاً به اسکنکردن ادامه دهید.",
|
||||
"scan_error": "خطا در اسکن",
|
||||
"select_no_bitcoin": "هیچ کیف پول بیتکوینی درحالحاضر دردسترس نیست.",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import React, { useEffect, useRef, useContext, useState } from 'react';
|
||||
import { View, Image, Text, StyleSheet, StatusBar, I18nManager, Pressable } from 'react-native';
|
||||
import { View, Image, Text, StyleSheet, StatusBar, I18nManager, Pressable, useColorScheme, Platform } from 'react-native';
|
||||
import { BluePrivateBalance } from '../../BlueComponents';
|
||||
import DraggableFlatList, { ScaleDecorator } from '../../components/react-native-draggable-flatlist';
|
||||
import LinearGradient from 'react-native-linear-gradient';
|
||||
|
@ -100,7 +100,7 @@ const ReorderWallets = () => {
|
|||
<ScaleDecorator>
|
||||
<Pressable
|
||||
disabled={isActive}
|
||||
onPressIn={drag}
|
||||
onLongPress={drag}
|
||||
shadowOpacity={40 / 100}
|
||||
shadowOffset={{ width: 0, height: 0 }}
|
||||
shadowRadius={5}
|
||||
|
@ -174,11 +174,13 @@ const ReorderWallets = () => {
|
|||
);
|
||||
return (
|
||||
<GestureHandlerRootView style={[styles.root, stylesHook.root]}>
|
||||
<StatusBar barStyle="default" />
|
||||
|
||||
<StatusBar
|
||||
barStyle={Platform.select({ ios: 'light-content', default: useColorScheme() === 'dark' ? 'light-content' : 'dark-content' })}
|
||||
/>
|
||||
<DraggableFlatList
|
||||
ListHeaderComponent={ListHeaderComponent}
|
||||
ref={sortableList}
|
||||
dragItemOverflow
|
||||
data={walletData}
|
||||
keyExtractor={_keyExtractor}
|
||||
renderItem={renderItem}
|
||||
|
|
Loading…
Add table
Reference in a new issue