在本地反应导航中使用自定义图标插入顶部栏

时间:2019-04-19 13:11:19

标签: react-native-navigation

使用react-native-navigation(2.17.0)程序包,当使用非系统图标时,屏幕的左边缘或右边缘与图标之间存在“插入”或“边距”。此插图不可点击。

leftButtons: [
  {
    id: "close",
    icon: images.close,
    color: "gray"
  }
]

Section of iOS top bar that is not tappable when using custom icons


但是,使用系统图标时,可以在屏幕边缘轻按该区域。

leftButtons: [
  {
    id: "close",
    systemItem: "refresh"
    color: "gray"
  }
]

Section of iOS top bar that is tappable when using system icons

使用自定义图标时,是否可以在屏幕边缘设置可点击区域?


仅供参考:使用文字而不是图标时,文字也可以在屏幕的边缘轻击。

leftButtons: [
  {
    id: "close",
    color: "gray"
    text: "close"
  }
]

Tappable text button

0 个答案:

没有答案