Skip to content

Commit f96e908

Browse files
committed
Customize Prediction values
1 parent 64e82b3 commit f96e908

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/components/Notif/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Notif extends Component {
3838
}
3939
]}
4040
>
41-
<Text style={styles.text}>{this.props.answer}</Text>
41+
<Text style={styles.text}>{this.props.answer.toUpperCase()}</Text>
4242
<Text style={styles.text}>{this.props.value}</Text>
4343
<ImageBackground source={icon} style={styles.icon} />
4444
</Animated.View>

src/components/Notif/styles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const styles = StyleSheet.create({
66
top: 0,
77
left: 0,
88
right: 0,
9-
height: 100,
9+
height: 150,
1010
flexDirection: "column",
1111
justifyContent: "center",
1212
alignItems: "center",

src/screens/Predict/styles.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ const styles = StyleSheet.create({
3838
alignItems: "center"
3939
},
4040
Button: {
41-
width: 250,
41+
width: 150,
4242
borderRadius: 50,
4343
height: 45,
4444
backgroundColor: "#00aeefff",
45-
marginBottom: 10
45+
marginBottom: 30
4646
},
4747
ButtonText: {
4848
fontFamily: 'bold',
49-
fontSize: 13,
49+
fontSize: 20,
5050
color: "white"
5151
}
5252
});

0 commit comments

Comments
 (0)