How do I create a native looking modal view segue with react-native? -
is there way perform modal segue, animating view , navbar bottom, covering existing navbar, view , tabbar, etc. ?
there similar example in uiexplorer view 'navigator' uses 'configurescene' float view (but not navbar) bottom via navigator.sceneconfigs.floatfrombottom, etc. native app modal segues supposed animate new navbar , view bottom. note: example of health app, click on 'medical id' tab, tap on 'edit' button in navbar, , notice how navbar , view animates , covers existing navbar, tabbar , view.
i can see modal segue in facebook groups app, react-native understanding. clicking on 'groups' tab, click on 'create' navbar button.
does know how implement native modal segues in react-native?

this.props.navigator.push({ title: 'pick date', sceneconfig: navigator.sceneconfigs.floatfrombottom, component: datepickerview, navigationbar: <navigationbar title="initial view"/>, passprops: {handleselecteddate: this.handleselecteddate} }) link source here: https://github.com/aaronksaunders/react-modal-nav-example
Comments
Post a Comment