import React, { Component } from 'react';
import {
StyleSheet,
View,
FlatList, Image,
} from 'react-native';
import BIChartsItem from "../commons/bi/BIChartsItem";
export default class EChartsPage extends Component {
static navigationOptions = {
headerBackImage:(
), //使用组件
}
constructor(props){
super(props);
this.state={
dataArray:['line','bar','line'],
}
}
renderItem(data){
return
}
render() {
return (
this.renderItem(data)}
/>
);
}
}
const styles = StyleSheet.create({
container: {
flex:1,
backgroundColor: '#efefef',
},
title:{
color:'white',
fontSize:20,
textAlign:'center',
},
});