...
|
...
|
@@ -67,7 +67,7 @@ export default class ActionView extends Component { |
|
|
{this.showTimer && this.state.timeLeft
|
|
|
? <View style={styles.timerContainer}>
|
|
|
<Image style={styles.clockImage} source={require('../../image/countDown.png')}/>
|
|
|
<Text style={{width: 90,fontSize:14,color:'#b0b0b0',marginLeft: 4}}>{this.state.timerString}</Text>
|
|
|
<Text style={styles.time}>{this.state.timerString}</Text>
|
|
|
</View>
|
|
|
: null
|
|
|
}
|
...
|
...
|
@@ -208,5 +208,11 @@ let styles = StyleSheet.create({ |
|
|
redText: {
|
|
|
fontSize: 14,
|
|
|
color: '#d0021b'
|
|
|
},
|
|
|
time:{
|
|
|
width: 90,
|
|
|
fontSize:14,
|
|
|
color:'#b0b0b0',
|
|
|
marginLeft: 4,
|
|
|
}
|
|
|
}); |
...
|
...
|
|