123456789101112131415161718192021222324 |
- 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',
- }
- })
|