Skip to content

Instantly share code, notes, and snippets.

@christopherdro
Created October 2, 2015 20:54
Show Gist options
  • Save christopherdro/29a8a6b5bd28af4f1881 to your computer and use it in GitHub Desktop.
Save christopherdro/29a8a6b5bd28af4f1881 to your computer and use it in GitHub Desktop.
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