Browse Source

Making submit button like prototype

master
GabrielTrettel 4 years ago
parent
commit
3acd4f7a4c
  1. 6
      src/app/components/Button.js

6
src/app/components/Button.js

@ -17,16 +17,16 @@ function AppButton({ title, onPress, color = "primary" }) {
const styles = StyleSheet.create({ const styles = StyleSheet.create({
button: { button: {
backgroundColor: colors.primary, backgroundColor: colors.primary,
borderRadius: 25,
borderRadius: 6,
justifyContent: "center", justifyContent: "center",
alignItems: "center", alignItems: "center",
padding: 15,
width: "100%", width: "100%",
height: 42,
marginVertical: 10, marginVertical: 10,
}, },
text: { text: {
color: colors.white, color: colors.white,
fontSize: 18,
fontSize: 16,
textTransform: "uppercase", textTransform: "uppercase",
fontWeight: "bold", fontWeight: "bold",
}, },

Loading…
Cancel
Save