Commit 23afcf27 by OuiAtichat

Merge remote-tracking branch 'origin/ejectedExpo' into ejectedExpo

parents f1580554 5540ae16
......@@ -10,7 +10,7 @@ import { Overlay } from 'react-native-elements';
const AnimatedIcon = Animated.createAnimatedComponent(IconMaterialIcons);
const Row = ({ data }) => (
<RectButton style={styles.rectButton} onPress={() => alert('hello ' + data.id)}>
<RectButton style={styles.rectButton} onPress={() => alert('hello ' + data.name)}>
<View
style={{
flexDirection: 'row',
......@@ -33,8 +33,8 @@ const Row = ({ data }) => (
? color.primary
: color.grey
: item.dayActive
? color.grey
: color.darkGrey,
? color.darkGrey
: color.grey,
},
]}
>
......
......@@ -451,7 +451,7 @@ export default class TimerScreen extends Component {
style={{ flex: 1, justifyContent: 'center' }}
onPress={() => this.setState({ isVisible: false })}
>
<Text style={{ color: '#aeaeae' }}>Cancel</Text>
<Text style={{ color: color.grey }}>Cancel</Text>
</Button>
<Button
rounded
......@@ -462,7 +462,7 @@ export default class TimerScreen extends Component {
}}
onPress={() => this.setState({ isVisible: false })}
>
<Text style={{ color: '#fff' }}>Confirm</Text>
<Text style={{ color: color.white }}>Confirm</Text>
</Button>
</View>
</ScrollView>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment