您好,登錄后才能下訂單哦!
1.樣式文件style.js
代碼如下:
import {
StyleSheet,
} from 'react-native';
export let styles = StyleSheet.create({
blinkText: {
fontSize: 20
},
});
截圖如下:
2.業務文件App.js
代碼如下:
import React, {
Component
} from 'react';
import {
View,
Text,
AppRegistry
} from 'react-native';
// 加載樣式文件
import {
styles
} from './static/style/style';
class Blink extends Component {
constructor(props) {
super(props);
this.state = {
isShowingText: true
};
setInterval(() => {
this.setState(previousState => {
return {
isShowingText: !previousState.isShowingText
};
});
}, 1000);
}
render() {
if (!this.state.isShowingText) {
return null;
};
return (
<Text style={styles.blinkText}>{this.props.text}</Text>
);
}
}
export default class BlinkApp extends Component {
render() {
return (
<View>
<Blink text='first blink' />
<Blink text='second blink' />
</View>
);
}
}
AppRegistry.registerComponent('BlinkApp', () => BlinkApp);
截圖如下:
3.運行代碼截圖:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。