├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── example ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.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 ├── babel.config.js ├── index.js ├── ios │ ├── Example-tvOS │ │ └── Info.plist │ ├── Example-tvOSTests │ │ └── Info.plist │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Example-tvOS.xcscheme │ │ │ └── Example.xcscheme │ ├── Example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── ExampleTests │ │ ├── ExampleTests.m │ │ └── Info.plist ├── metro.config.js ├── package.json └── yarn.lock ├── package.json ├── readme-assets ├── 000000.png ├── 808080.png ├── bold-text-native-oppo.png ├── bold-text-normalized.png ├── ios-activityindicator.png ├── ios-textinput.png ├── native-activityindicator.png ├── native-text.png ├── native-textinput.png ├── normalized-activityindicator.png ├── normalized-text.png └── normalized-textinput.png ├── src ├── ActivityIndicator.tsx ├── Alert.tsx ├── Image.tsx ├── Text.tsx ├── TextInput.tsx └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/README.md -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/App.js -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/__tests__/App-test.js -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Example' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Example-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/Example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme -------------------------------------------------------------------------------- /example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /example/ios/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/Info.plist -------------------------------------------------------------------------------- /example/ios/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/Example/main.m -------------------------------------------------------------------------------- /example/ios/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /example/ios/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/ios/ExampleTests/Info.plist -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/package.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/package.json -------------------------------------------------------------------------------- /readme-assets/000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/000000.png -------------------------------------------------------------------------------- /readme-assets/808080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/808080.png -------------------------------------------------------------------------------- /readme-assets/bold-text-native-oppo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/bold-text-native-oppo.png -------------------------------------------------------------------------------- /readme-assets/bold-text-normalized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/bold-text-normalized.png -------------------------------------------------------------------------------- /readme-assets/ios-activityindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/ios-activityindicator.png -------------------------------------------------------------------------------- /readme-assets/ios-textinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/ios-textinput.png -------------------------------------------------------------------------------- /readme-assets/native-activityindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/native-activityindicator.png -------------------------------------------------------------------------------- /readme-assets/native-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/native-text.png -------------------------------------------------------------------------------- /readme-assets/native-textinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/native-textinput.png -------------------------------------------------------------------------------- /readme-assets/normalized-activityindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/normalized-activityindicator.png -------------------------------------------------------------------------------- /readme-assets/normalized-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/normalized-text.png -------------------------------------------------------------------------------- /readme-assets/normalized-textinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/readme-assets/normalized-textinput.png -------------------------------------------------------------------------------- /src/ActivityIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/src/ActivityIndicator.tsx -------------------------------------------------------------------------------- /src/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/src/Alert.tsx -------------------------------------------------------------------------------- /src/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/src/Image.tsx -------------------------------------------------------------------------------- /src/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/src/Text.tsx -------------------------------------------------------------------------------- /src/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/src/TextInput.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kida007/react-native-normalized/HEAD/yarn.lock --------------------------------------------------------------------------------