├── .eslintrc.json ├── .github └── workflows │ └── npmpublish.yml ├── .gitignore ├── LICENSE ├── README.md ├── example └── react-native-fab-demo │ ├── .expo-shared │ └── assets.json │ ├── .gitignore │ ├── App.js │ ├── app.json │ ├── assets │ ├── icon.png │ └── splash.png │ ├── babel.config.js │ ├── metro.config.js │ ├── package-lock.json │ └── package.json ├── index.d.ts ├── index.js ├── package.json └── src ├── Touchable.js ├── index.js └── utils └── index.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/README.md -------------------------------------------------------------------------------- /example/react-native-fab-demo/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/.expo-shared/assets.json -------------------------------------------------------------------------------- /example/react-native-fab-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/.gitignore -------------------------------------------------------------------------------- /example/react-native-fab-demo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/App.js -------------------------------------------------------------------------------- /example/react-native-fab-demo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/app.json -------------------------------------------------------------------------------- /example/react-native-fab-demo/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/assets/icon.png -------------------------------------------------------------------------------- /example/react-native-fab-demo/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/assets/splash.png -------------------------------------------------------------------------------- /example/react-native-fab-demo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/babel.config.js -------------------------------------------------------------------------------- /example/react-native-fab-demo/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/metro.config.js -------------------------------------------------------------------------------- /example/react-native-fab-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/package-lock.json -------------------------------------------------------------------------------- /example/react-native-fab-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/example/react-native-fab-demo/package.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/package.json -------------------------------------------------------------------------------- /src/Touchable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/src/Touchable.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidevesh/react-native-fab/HEAD/src/utils/index.js --------------------------------------------------------------------------------