├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── Example ├── .eslintrc ├── .flowconfig ├── .watchmanconfig ├── App.js ├── FloatingLabel.js ├── android │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ ├── react.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── 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 │ └── settings.gradle ├── index.android.js ├── index.ios.js ├── ios │ ├── FloatingLabel.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FloatingLabel.xcscheme │ └── FloatingLabelTests │ │ ├── FloatingLabelTests.m │ │ └── Info.plist └── package.json ├── FloatingLabel.js ├── LICENSE ├── README.md └── package.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/.npmignore -------------------------------------------------------------------------------- /Example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/.eslintrc -------------------------------------------------------------------------------- /Example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/.flowconfig -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/App.js -------------------------------------------------------------------------------- /Example/FloatingLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/FloatingLabel.js -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/react.gradle -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'FloatingLabel' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/index.android.js -------------------------------------------------------------------------------- /Example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/index.ios.js -------------------------------------------------------------------------------- /Example/ios/FloatingLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/ios/FloatingLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/FloatingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/ios/FloatingLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/FloatingLabel.xcodeproj/xcshareddata/xcschemes/FloatingLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/ios/FloatingLabel.xcodeproj/xcshareddata/xcschemes/FloatingLabel.xcscheme -------------------------------------------------------------------------------- /Example/ios/FloatingLabelTests/FloatingLabelTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/ios/FloatingLabelTests/FloatingLabelTests.m -------------------------------------------------------------------------------- /Example/ios/FloatingLabelTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/ios/FloatingLabelTests/Info.plist -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/Example/package.json -------------------------------------------------------------------------------- /FloatingLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/FloatingLabel.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/react-native-floating-label/HEAD/package.json --------------------------------------------------------------------------------