Authored by hongyong.zhao

ui fix — reviewed by yjc

'use strict';
import React, {Component} from 'react';
import ReactNative, {AsyncStorage, Platform, StyleSheet, View} from 'react-native'
import ReactNative, {AsyncStorage, Dimensions, Platform, StyleSheet, Text, View} from 'react-native'
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
... ... @@ -232,6 +232,7 @@ class DataContainer extends Component {
jumpWithActivityUrl={this._jumpWithActivityUrl}
/>
<Text style={styles.instructionText}>佣金打款、报税由南京顺通人力资源开发服务有限公司代操作</Text>
<LoadingIndicator isVisible={isFetching}/>
</View>
... ... @@ -239,10 +240,23 @@ class DataContainer extends Component {
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
flex: 1,
},
instructionText: {
fontSize: 11,
color: '#B0B0B0',
width: width,
textAlign: 'center',
// marginTop: 200,
position: 'absolute',
// textAlignVertical: 'bottom',
// flex: 1,
bottom: 10,
}
});
export default connect(mapStateToProps, mapDispatchToProps)(DataContainer);
... ...