Skip to content

0.6.1

Compare
Choose a tag to compare
@xxsnakerxx xxsnakerxx released this 12 May 13:02
· 113 commits to master since this release
  • added ability to listen when a scene will lose focus via route prop onBlur (onBackBtnPress defined in the previous release was removed)
...
onLinkPress = (link) => {
  tabBar.hide(),

  this.props.navigator.push({
    component: Browser,
    props: {
      url: link,
      onBlur: () => tabBar.show(),
    },
  })
}
...