mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
FIX: iPad compatibility
This commit is contained in:
parent
2dca9b2ad4
commit
9aff7c24e6
@ -13,6 +13,7 @@ import {
|
||||
BlueList,
|
||||
BlueListItem,
|
||||
BlueHeaderDefaultMain,
|
||||
is,
|
||||
} from '../../BlueComponents';
|
||||
import PropTypes from 'prop-types';
|
||||
let EV = require('../../events');
|
||||
@ -210,7 +211,13 @@ export default class WalletsList extends Component {
|
||||
})()}
|
||||
</View>
|
||||
|
||||
<View style={{ top: 120, position: 'absolute', width: width }}>
|
||||
<View
|
||||
style={{
|
||||
top: is.ipad() ? 60 : 120,
|
||||
position: 'absolute',
|
||||
width: width,
|
||||
}}
|
||||
>
|
||||
{(() => {
|
||||
if (
|
||||
BlueApp.getTransactions(this.lastSnappedTo || 0)
|
||||
|
Loading…
Reference in New Issue
Block a user