├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky ├── .npmignore ├── commit-msg └── pre-commit ├── .yarnrc ├── CONTRIBUTING.md ├── Doc ├── android.gif └── ios.gif ├── Example ├── .gitattributes ├── .gitignore ├── app.json ├── package.json ├── src │ └── App.tsx ├── tsconfig.json └── yarn.lock ├── LICENSE ├── README.md ├── babel.config.js ├── doc ├── android.gif └── ios.gif ├── package.json ├── scripts └── bootstrap.js ├── src ├── TooltipMenu.tsx ├── TooltipMenuItem.tsx └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.npmignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint -E HUSKY_GIT_PARAMS 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doc/android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Doc/android.gif -------------------------------------------------------------------------------- /Doc/ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Doc/ios.gif -------------------------------------------------------------------------------- /Example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Example/src/App.tsx -------------------------------------------------------------------------------- /Example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Example/tsconfig.json -------------------------------------------------------------------------------- /Example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/Example/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/babel.config.js -------------------------------------------------------------------------------- /doc/android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/doc/android.gif -------------------------------------------------------------------------------- /doc/ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/doc/ios.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/TooltipMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/src/TooltipMenu.tsx -------------------------------------------------------------------------------- /src/TooltipMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/src/TooltipMenuItem.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TooltipMenu'; 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimek/react-native-tooltip-menu/HEAD/yarn.lock --------------------------------------------------------------------------------