Created
October 2, 2015 20:54
-
-
Save christopherdro/29a8a6b5bd28af4f1881 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.props.navigator.push({ | |
id: 'patient-notes', | |
data: rowData, | |
sceneConfig: Navigator.SceneConfigs.FloatFromRight, | |
navigationBar: ( | |
<NavigationBar | |
title={`${rowData.lastName}, ${rowData.firstName.charAt(0)}.`} | |
buttonsColor="#48D1CC" | |
customNext={<NavigationButtons.AddNote patient={rowData} NavigationEmitter={this.props.NavigationEmitter}/>} | |
style={{flex: 1}} | |
/> | |
) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment