Skip to content

Commit

Permalink
UI Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaseTeichmann committed Oct 2, 2019
1 parent 2a9925c commit 6802872
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Routinely/app/components/TimePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ export default class TimePicker extends Component {
return (
<View>
<View>
<Button onPress={this.datepicker} title="Show date picker!" />
<Button onPress={this.datepicker} title="Show Date" />
</View>
<View>
<Button onPress={this.timepicker} title="Show time picker!" />
<Button onPress={this.timepicker} title="Select Time" />
</View>
{ show && <DateTimePicker value={date}
mode={mode}
Expand Down
8 changes: 4 additions & 4 deletions Routinely/app/components/repeat/SnoozeDuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ export default class SnoozeDuration extends Component {
<View style = {styles.container}>
<Text style = {styles.snooze}>Snooze</Text>
<Divider/>
<Button buttonStyle = {styles.dayBox} title='2 min'></Button>
<Button buttonStyle = {styles.dayBox} title='5 min'></Button>
<Button buttonStyle = {styles.dayBox} title='10 min'></Button>
<Button buttonStyle = {styles.snoozeBox} title='2 min'></Button>
<Button buttonStyle = {styles.snoozeBox} title='5 min'></Button>
<Button buttonStyle = {styles.snoozeBox} title='10 min'></Button>
</View>
);
}
}
AppRegistry.registerComponent('SnoozeDuration', () => SnoozeDuration);

const styles = StyleSheet.create({
dayBox:{
snoozeBox:{
backgroundColor: 'lightgrey',
borderColor: 'white',
borderWidth: 1,
Expand Down

0 comments on commit 6802872

Please sign in to comment.