/
Lenarqa
/
reactNativeTestApp
Обзор
Документация
Войти
/
Lenarqa
/
reactNativeTestApp
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
components/Box.js
25 строк
522 B
Lenarqa
watch how work flexbox
20 мар 2024, 20:26
20 мар 2024, 20:26
102d600
Код
Авторство
О чём код?
import { StyleSheet, View, Text } from "react-native"; export default function Box({ children, style}) { return ( <View style={[ styles.box, style ]}> <Text style={ styles.text }>{ children }</Text> </View> ); } const styles = StyleSheet.create({ box: { padding: 20, backgroundColor: "white", // flexGrow: 1, width: 100, height: 100 }, text: { fontSize: 24, fontWeight: "bold", textAlign: "center" } });