rn-project
Version:
#### 项目介绍 类似一个脚手架的工具 此项目致力于构建一套基础,简单,可维护的 适配我司的react-native项目。可在此基础上搭建项目,封装了基础架构,基础组件,以及各种交互等;可快速进行项目搭建,开发。 # 涉及主要技术 - 1. 项目主要架构 * react native * react-navigation * redux
57 lines (50 loc) • 1.29 kB
JavaScript
import React, { Component } from 'react';
import { StyleSheet, View, Text } from 'react-native';
import { SafeAreaView } from 'react-navigation';
import BaseStyle from '../constants/Style';
import Marquee from '../components/marqueeLabel';
export default class MarqueeScreen extends Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
<SafeAreaView
style={[BaseStyle.flex, styles.homebg]}
forceInset={{ top: 'never' }}>
<View style={styles.container}>
<View style={styles.row}>
<Text style={styles.icon}></Text>
<Marquee
duration={8000}
textStyle={{ fontSize: 20, color: 'red' }}
text={
'习近平祝贺纪念一带一路倡议在哈萨克斯坦提出5周年商务论坛开幕'
}
/>
</View>
</View>
</SafeAreaView>
);
}
}
const styles = StyleSheet.create({
homebg: {
backgroundColor: '#eee',
},
container: {
...BaseStyle.flex,
paddingTop: 20,
paddingLeft: 15,
},
row: {
...BaseStyle.row,
...BaseStyle.alignItemsCenter,
},
icon: {
fontFamily: 'iconfont',
color: '#31bcfe',
fontSize: 20,
},
});