我在NavigatorIOS中使用图像(png)作为左按钮,并使用60x60的高分辨率png。菜单图像太大了。如果我使用30x30的大小菜单按钮是模糊的。
我也尝试使用60x60,然后使用@ 2x或@ 3x,但这没有用。
有人知道如何在NavigatorIOS中使用高分辨率图像作为按钮图像吗?
代码:
<NavigatorIOS
ref={(ref) => this._navigator = ref}
style={{flex: 1}}
navigationBarHidden={false}
tintColor={'#000'}
barTintColor = {'#D3D2DA'}
initialRoute={{
title: 'Hello World',
component: Home,
leftButtonIcon: require('./images/menu.png'),
onLeftButtonPress: () => { this._drawer.open() }
}}/>