React Native FlatList 추가
import React,{Component} from 'react'; import { SafeAreaView, View, FlatList, StyleSheet, Text,TextInput,Button } from 'react-native'; const Item =({ title,user }) => { return ( {title} 작성자 by.{user} ); } export default class FlatListView extends Component { state = { Data1:[], userId:'', userTitle:'' } constructor(){ super() this.addList = this.addList.bind(this) this.getUserId =this.getUserId...