使用样式表在本机反应中的样式系统

发布于 2025-01-10 18:56:48 字数 59 浏览 0 评论 0原文

我试图使反应本机中的样式表能够使用动态值,但我不知道如何声明它,我们可以更改反应本机样式表的样式名称吗?

I am trying to make stylesheet in react native able to use dynamic value, but i have no idea how to declare it, and can we change the styling name of react native style sheet?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听你说爱我 2025-01-17 18:56:48

您可以通过这种方式在 React Native 中声明样式表,

import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';



export default function App() {


return (
  <View style={styles.container}>
     <Text style={styles.welcomeText}>welcome</Text>
  </View>
 );
}

const styles = StyleSheet.create({
  container: {
   flex: 1,
   justifyContent: 'center',
   paddingTop: 10,
   backgroundColor: '#ecf0f1',
   padding: 8,
 },
 welcomeText:{
   color:'red',
 },
 });

请在此处阅读文档。

You can declare a stylesheet in react native in this way

import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';



export default function App() {


return (
  <View style={styles.container}>
     <Text style={styles.welcomeText}>welcome</Text>
  </View>
 );
}

const styles = StyleSheet.create({
  container: {
   flex: 1,
   justifyContent: 'center',
   paddingTop: 10,
   backgroundColor: '#ecf0f1',
   padding: 8,
 },
 welcomeText:{
   color:'red',
 },
 });

Read about this in the documentation here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文