/
Lenarqa
/
reactNativeTestApp
Обзор
Документация
Войти
/
Lenarqa
/
reactNativeTestApp
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
components/CustomButton/CustomButton.ios.js
25 строк
599 B
Lenarqa
use styles for android and ios
21 мар 2024, 19:01
21 мар 2024, 19:01
bc1bcc2
Код
Авторство
О чём код?
import { Pressable, StyleSheet, Text } from "react-native"; export default function CustomButton({ onPress, title }) { return ( <Pressable onPress={onPress} style={ styles.button }> <Text style={ styles.text }>{title}</Text> </Pressable> ); } const styles = StyleSheet.create({ button: { marginTop: 10, maxWidth: "50%", alignItems: "center", justifyContent: "center", backgroundColor: "lightblue", borderRadius: 20, padding: 10 }, text: { fontSize: 18, color: "purple" } })