gpt4 book ai didi

javascript - NativeBase 按钮​​不显示文本

转载 作者:行者123 更新时间:2023-11-30 20:16:18 25 4
gpt4 key购买 nike

我有一个问题,我的 NativeBase 按钮​​不显示它们的文本。我几乎使用了他们网站文档中的示例代码,但是当我渲染它时,它显示了三个我可以触摸的按钮,但没有任何标题。有任何想法吗?请看代码:

App.js

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import MenuButton from './MenuButton';

export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.textStyle}>Welcome to the App</Text>
<MenuButton/>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
top: 40,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
textStyle:{
fontSize: 30
}
});

MenuButton.js:

import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { Container, Content, Button, Badge } from 'native-base';
export default class MenuButtons extends Component {
render() {
return (
<Container>
<Content>
<Button style={styles.button} textStyle={styles.buttonText}> HeLLO!! </Button>
<Button style={styles.button} bordered large> Info </Button>
<Button style={styles.button} bordered capitalize={true}> Primary </Button>
</Content>
</Container>
);
}
}

const styles = StyleSheet.create({
button: {
backgroundColor: 'orange',
paddingBottom: 30,
paddingTop: 30,
width: 350,
height:40,
},
buttonText:{
fontSize:40,
color:'black'
}
});

最佳答案

刚刚删除了“paddingTop”和“paddingBottom” Prop ,文本开始出现。

关于javascript - NativeBase 按钮​​不显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51888060/

25 4 0
文章推荐: c# - 显示错误输出的结构的 Marshal.SizeOf
文章推荐: c# - 无法在c#中打开链接
文章推荐: c# - 如何用逗号加8位分隔字符串
文章推荐: c# - 从 List 枚举初始化 List