问题: 所以我正在使用自定义字体编写应用程序,并且我对其编码,因此当您按下按钮时,字体将加载。当您按下“按下我15秒后加载!”按钮时应该出现一个用户输入框以及一些空帖子,一些文本和另一个按钮(它还没有做任何事情),但没有显示任何内容。我没有得到任何错误。我想帮助弄清楚为什么没有出现任何东西以及如何获得正确的渲染内容。
工作原理: 当你按下按钮“15秒后按我加载应用程序!”变量fontLoaded应该更改为true(我不知道它是否实际更改),然后这会导致代码呈现其他所有内容。什么都没有渲染。
我还尝试了什么: 我已经尝试了另一种方法,你可以在加载字体的代码之后放置变量fontLoaded,这样它就是自动的,而且也没有做任何事情。我没有尝试过其他任何东西,因为我不知道还有什么可以尝试。
代码:
import React, { Component } from 'react';
import { StyleSheet, Text, View, Image, TextInput, ScrollView, TouchableHighlight, Button } from 'react-native';
import { Font } from 'expo';
var fontLoaded = false;
export default class App extends React.Component {
state = {
fontLoaded: false,
};
componentDidMount() {
Expo.Font.loadAsync({
'Cabin-Regular-TTF': require('./Cabin-Regular-TTF.ttf'),
});
}
constructor(props) {
super(props);
this.state = { postInput: ""}
}
render() {
return (
<View style={styles.container}>
<View style={styles.container}>
<View style={{width: 1, height: 30, backgroundColor: '#e8e8e8'}} />
<Button
onPress={() => this.setState({ fontLoaded: true })}
title="Press Me To Load the App After 15 Seconds!"
color="#fe8200"
accessibilityLabel="Wait 15 seconds and then press me to load the font!"
/>
</View>
{fontLoaded ? (
<View style={styles.container}>
<Text style={{ fontFamily: 'Cabin-Regular-TTF', fontSize: 16 }}>
Whats on your mind? Create a post!
</Text>
<TextInput>
style={{height:40, width: 320, borderColor: '#303030', borderWidth: 1}}
onChangeText={(postInput)=>this.setState({postInput})}
value={this.state.postInput}
</TextInput>
<Button
title="+"
color="#fe8200"
accessibilityLabel="Wait 15 seconds and then press me to load the font!"
/>
<ScrollView>
<View style={{width: 1, height: 6, backgroundColor: '#e8e8e8'}} />
<View style={{width: 300, height: 250, backgroundColor: '#1daff1'}} />
<View style={{width: 300, height: 40, backgroundColor: '#147aa8'}} />
<View style={{width: 1, height: 6, backgroundColor: '#e8e8e8'}} />
<View style={{width: 300, height: 250, backgroundColor: '#1daff1'}} />
<View style={{width: 300, height: 40, backgroundColor: '#147aa8'}} />
<View style={{width: 1, height: 6, backgroundColor: '#e8e8e8'}} />
</ScrollView>
</View>) : (null) }
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#e8e8e8',
alignItems: 'center',
justifyContent: 'center'
},
});
答案 0 :(得分:2)
您应该在渲染方法的返回中放置this.state.fontLoaded
,您正在使用未更改的全局变量fontLoaded
。希望这有帮助!