Skip to content

Commit

Permalink
Merge pull request #17 from BramSrna/fix_add_item_location_051119
Browse files Browse the repository at this point in the history
Fix Add Item Location
  • Loading branch information
haseebakhan10 authored Nov 5, 2019
2 parents 92acb38 + aca3a16 commit 970a8cc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Application/pages/AddItemLocationPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,21 @@ class AddItemLocationPage extends Component {
style={styles.midContainer}
keyboardVerticalOffset={keyboardVerticalOffset}
behavior={keyboardAvoidingViewBehavior}>
<View style={styles.rowSorter}>
<View style={{ flex: 1 }}>
{this.renderRequiredText("Generic Name: ")}
</View>

<View style={{ flex: 1 }}>
<TextInput
style={styles.textInput}
placeholder="Generic Name"
onChangeText={(genericName) => this.setState({ genericName })}
value={this.state.genericName}
/>
</View>
</View>

<View style={styles.rowSorter}>
<View style={{ flex: 1 }}>
<Text style={globalStyles.whiteText}>Specific Name: </Text>
Expand Down

0 comments on commit 970a8cc

Please sign in to comment.