import React, {Component} from 'react'; import { View, Text, SafeAreaView, ScrollView, Image, Dimensions, TouchableOpacity, } from 'react-native'; import public_css from '../../../source/css/public_css'; export default class agreement extends Component { constructor(props) { super(props); this.props.navigation.dangerouslyGetParent().setOptions({ tabBarVisible: false, }); this.state = { listData: [], showFoot: 0, // 控制foot, 0:隐藏footer 1:已加载完成,没有更多数据 2 :显示加载中 isLoading: false, }; } render() { return ( 会员服务协议 ); } }