Я получаю данные из базы данных и сохраняю их в массив.Теперь я хочу отобразить их с помощью плоского списка, но не знаю как?
class HomeScreen extends Component{
constructor(props){
super(props);
this.state={
menu:[]
}
}
// componentDidMount() {
// firebase.auth().onAuthStateChanged(authenticate => {
// if (authenticate) {
// this.props.navigation.replace("Home");
// } else {
// this.props.navigation.replace("login");
// }
// });
// }
componentDidMount() {
firebase.database().ref('menu/starter/').once('value').then(snapshot => {
var items = [];
snapshot.forEach((child) => {
items.push({
name: child.val().name,
image: child.val().image,
price: child.val().price,
});
});
this.setState({ menu: items});
console.log(this.state.menu)
});
}
render(){
return(
<View style={styles.container}>
<Text></Text>
</View>
)
}
}