説明なし

Button.js 566B

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