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
| 'use strict'; | |
| let React = require('react-native'); | |
| let Home = require('./entry'); | |
| let FeedbackModal = require('FeedbackModal'); | |
| let { | |
| AppRegistry, | |
| NativeAppEventEmitter, | |
| View, | |
| } = React; |
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
| /** | |
| * @providesModule PatientList | |
| */ | |
| import NavigationBar from 'react-native-navbar'; | |
| import NavigationButtons from 'NavigationButtons'; | |
| import React, { ListView, Navigator, StyleSheet, Text, TextInput, TouchableHighlight, View } from 'react-native'; | |
| import { connect } from 'react-redux/native' | |
| @connect(state => ({ | |
| patients: state.patients |
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
| <Navigator | |
| ref="navigator" | |
| renderScene={::this._renderScene} | |
| initialRoute={{ | |
| navigationBar: ( | |
| <NavigationBar | |
| title="Test APP" | |
| customPrev={<NavigationButtons.Settings/>} | |
| customNext={<NavigationButtons.AddPatient NavigationEmitter={NavigationEmitter} />} | |
| style={{flex: 1}} |
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}} |
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
| // | |
| // NTRCTProfileTable.h | |
| // Nametag | |
| // | |
| // Created by Christopher on 7/20/15. | |
| // Copyright (c) 2015 650 Industries. All rights reserved. | |
| // | |
| #import "RCTViewManager.h" |
NewerOlder