├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── ReactotronConfig.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ ├── floatingwidget │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ │ └── thebylito │ │ │ ├── FloatingWidgetShowService.java │ │ │ ├── RNFloatWidgetModule.java │ │ │ └── RNFloatWidgetPackage.java │ │ └── res │ │ ├── layout │ │ └── floating_widget_layout.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.js ├── ios ├── floatingwidget-tvOS │ └── Info.plist ├── floatingwidget-tvOSTests │ └── Info.plist ├── floatingwidget.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── floatingwidget-tvOS.xcscheme │ │ └── floatingwidget.xcscheme ├── floatingwidget │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── floatingwidgetTests │ ├── Info.plist │ └── floatingwidgetTests.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | "# react-native-float-widget" 2 | -------------------------------------------------------------------------------- /ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ReactotronConfig.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/floatingwidget/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/java/com/floatingwidget/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/floatingwidget/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/java/com/floatingwidget/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/thebylito/FloatingWidgetShowService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/java/com/thebylito/FloatingWidgetShowService.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/thebylito/RNFloatWidgetModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/java/com/thebylito/RNFloatWidgetModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/thebylito/RNFloatWidgetPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/java/com/thebylito/RNFloatWidgetPackage.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/floating_widget_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/layout/floating_widget_layout.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'floatingwidget' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/index.js -------------------------------------------------------------------------------- /ios/floatingwidget-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/floatingwidget-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/floatingwidget.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/floatingwidget.xcodeproj/xcshareddata/xcschemes/floatingwidget-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget.xcodeproj/xcshareddata/xcschemes/floatingwidget-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/floatingwidget.xcodeproj/xcshareddata/xcschemes/floatingwidget.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget.xcodeproj/xcshareddata/xcschemes/floatingwidget.xcscheme -------------------------------------------------------------------------------- /ios/floatingwidget/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/AppDelegate.h -------------------------------------------------------------------------------- /ios/floatingwidget/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/AppDelegate.m -------------------------------------------------------------------------------- /ios/floatingwidget/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/floatingwidget/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/floatingwidget/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/floatingwidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/Info.plist -------------------------------------------------------------------------------- /ios/floatingwidget/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidget/main.m -------------------------------------------------------------------------------- /ios/floatingwidgetTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidgetTests/Info.plist -------------------------------------------------------------------------------- /ios/floatingwidgetTests/floatingwidgetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/ios/floatingwidgetTests/floatingwidgetTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebylito/react-native-float-widget/HEAD/package.json --------------------------------------------------------------------------------