Sin descripción

Button.js 626B

123456789101112131415161718192021222324
  1. import React from "react";
  2. import { View, Text, StyleSheet, TouchableOpacity, Linking, Button, Pressable} from "react-native";
  3. const ButtonLay = StyleSheet.create({
  4. button: {
  5. width:250,
  6. alignSelf: 'center',
  7. alignItems: 'center',
  8. justifyContent: 'center',
  9. paddingVertical: 12,
  10. paddingHorizontal: 32,
  11. borderRadius: 4,
  12. elevation: 3,
  13. backgroundColor: '#009688',
  14. marginTop: "5%"
  15. },
  16. text: {
  17. fontSize: 16,
  18. lineHeight: 21,
  19. fontWeight: 'bold',
  20. letterSpacing: 0.25,
  21. color: 'white',
  22. }
  23. })