1234567891011121314151617181920212223242526272829303132 |
- import React from "react";
- import {
- View,
- Text,
- StyleSheet,
- TouchableOpacity,
- Linking,
- Button,
- Pressable,
- } from "react-native";
-
- const ButtonLay = StyleSheet.create({
- button: {
- width: 250,
- alignSelf: "center",
- alignItems: "center",
- justifyContent: "center",
- paddingVertical: 12,
- paddingHorizontal: 32,
- borderRadius: 4,
- elevation: 3,
- backgroundColor: "#009688",
- marginTop: "5%",
- },
- text: {
- fontSize: 16,
- lineHeight: 21,
- fontWeight: "bold",
- letterSpacing: 0.25,
- color: "white",
- },
- });
|