├── .editorconfig ├── .flowconfig ├── .gitignore ├── .npmignore ├── Example ├── PopoverExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── PopoverExample.xcscheme ├── PopoverExampleTests │ ├── Info.plist │ └── PopoverExampleTests.m ├── iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── main.jsbundle │ └── main.m └── index.ios.js ├── Popover.js ├── README.md ├── Screenshots ├── animated.gif ├── basic.gif └── basic.png └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/.npmignore -------------------------------------------------------------------------------- /Example/PopoverExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/PopoverExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PopoverExample.xcodeproj/xcshareddata/xcschemes/PopoverExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/PopoverExample.xcodeproj/xcshareddata/xcschemes/PopoverExample.xcscheme -------------------------------------------------------------------------------- /Example/PopoverExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/PopoverExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/PopoverExampleTests/PopoverExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/PopoverExampleTests/PopoverExampleTests.m -------------------------------------------------------------------------------- /Example/iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/AppDelegate.h -------------------------------------------------------------------------------- /Example/iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/AppDelegate.m -------------------------------------------------------------------------------- /Example/iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/Info.plist -------------------------------------------------------------------------------- /Example/iOS/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/main.jsbundle -------------------------------------------------------------------------------- /Example/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/iOS/main.m -------------------------------------------------------------------------------- /Example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Example/index.ios.js -------------------------------------------------------------------------------- /Popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Popover.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Screenshots/animated.gif -------------------------------------------------------------------------------- /Screenshots/basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Screenshots/basic.gif -------------------------------------------------------------------------------- /Screenshots/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/Screenshots/basic.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanregisser/react-native-popover/HEAD/package.json --------------------------------------------------------------------------------