mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-13 19:16:52 +01:00
Update WalletTransactions.tsx
This commit is contained in:
parent
5e4d58b207
commit
c1ae300254
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ import {
|
|||
Animated,
|
||||
RefreshControl,
|
||||
LayoutChangeEvent,
|
||||
Platform,
|
||||
} from 'react-native';
|
||||
import { Icon } from '@rneui/themed';
|
||||
import * as BlueElectrum from '../../blue_modules/BlueElectrum';
|
||||
|
@ -532,7 +533,7 @@ const WalletTransactions: React.FC<WalletTransactionsProps> = ({ route }) => {
|
|||
ListEmptyComponent={
|
||||
<ScrollView
|
||||
style={[styles.flex, { backgroundColor: colors.background }]}
|
||||
contentContainerStyle={[styles.scrollViewContent, { marginTop: headerHeight }]}
|
||||
contentContainerStyle={[styles.scrollViewContent, Platform.OS === 'android' ? { marginTop: headerHeight } : {}]}
|
||||
centerContent
|
||||
testID="TransactionsListEmpty"
|
||||
>
|
||||
|
|
Loading…
Add table
Reference in a new issue