├── .gitignore ├── .npmignore ├── .prettierrc ├── .watchmanconfig ├── README.md ├── index.js ├── npmignore ├── package.json ├── screenrecording └── screengrab.gif ├── src ├── AutoCompleteInput.js ├── AutoCompleteListView.js └── LocationView.js └── utils └── debounce.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | node_modules 3 | yarn.lock 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/.watchmanconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/index.js -------------------------------------------------------------------------------- /npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/package.json -------------------------------------------------------------------------------- /screenrecording/screengrab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/screenrecording/screengrab.gif -------------------------------------------------------------------------------- /src/AutoCompleteInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/src/AutoCompleteInput.js -------------------------------------------------------------------------------- /src/AutoCompleteListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/src/AutoCompleteListView.js -------------------------------------------------------------------------------- /src/LocationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/src/LocationView.js -------------------------------------------------------------------------------- /utils/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superapp/react-native-location-view/HEAD/utils/debounce.js --------------------------------------------------------------------------------