Skip to content

Instantly share code, notes, and snippets.

View anthony0000's full-sized avatar

Tony Starks anthony0000

View GitHub Profile
@anthony0000
anthony0000 / statelist.jsx
Last active December 8, 2022 09:17
Nigeria States List In React Native
import React,{ useState,useEffect } from 'react';
import { Text, View,SafeAreaView, StyleSheet, ImageBackground, ScrollView, TextInput,KeyboardAvoidingView,Platform,ActivityIndicator } from 'react-native';
import DropDownPicker from 'react-native-dropdown-picker';
const App = (props) => {
const [openStateList, setOpenStateList] = useState(false);
const [cacheState, setCacheState] = useState('');
const [itemsStateList, setItemsStateList] = useState([
{label: 'PLATEAU',value: 'PLATEAU'},
{label: 'ABUJA FCT',value: 'ABUJA FCT'},