├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .watchmanconfig ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── CMakeLists.txt ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestDeprecated.xml │ ├── cpp │ ├── JsiViewHelpers.cpp │ └── JsiViewHelpers.h │ └── java │ └── com │ └── jsiviewhelpers │ ├── JsiViewHelpers.java │ ├── JsiViewHelpersModule.java │ ├── JsiViewHelpersPackage.java │ ├── Scroller.kt │ └── textSize │ ├── RNTextSize.java │ ├── RNTextSizeConf.java │ └── RNTextSizeSpannedText.java ├── babel.config.js ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── jsiviewhelpersexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── File.swift │ ├── JsiViewHelpersExample-Bridging-Header.h │ ├── JsiViewHelpersExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── JsiViewHelpersExample.xcscheme │ ├── JsiViewHelpersExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── JsiViewHelpersExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── JsiViewHelpersExampleTests │ │ ├── Info.plist │ │ └── JsiViewHelpersExampleTests.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json ├── react-native.config.js ├── src │ ├── App.tsx │ ├── Other.tsx │ └── Scroll.tsx └── yarn.lock ├── ios ├── JsiViewHelpers-Bridging-Header.h ├── JsiViewHelpers.h ├── JsiViewHelpers.mm ├── JsiViewHelpers.xcodeproj │ └── project.pbxproj ├── RNTextSize.h ├── RNTextSize.m ├── Scroller.h └── Scroller.m ├── lefthook.yml ├── package.json ├── react-native-jsi-view-helpers.podspec ├── scripts └── bootstrap.js ├── src └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/README.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestDeprecated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/AndroidManifestDeprecated.xml -------------------------------------------------------------------------------- /android/src/main/cpp/JsiViewHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/cpp/JsiViewHelpers.cpp -------------------------------------------------------------------------------- /android/src/main/cpp/JsiViewHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/cpp/JsiViewHelpers.h -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/JsiViewHelpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/JsiViewHelpers.java -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/JsiViewHelpersModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/JsiViewHelpersModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/JsiViewHelpersPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/JsiViewHelpersPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/Scroller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/Scroller.kt -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/textSize/RNTextSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/textSize/RNTextSize.java -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/textSize/RNTextSizeConf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/textSize/RNTextSizeConf.java -------------------------------------------------------------------------------- /android/src/main/java/com/jsiviewhelpers/textSize/RNTextSizeSpannedText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/android/src/main/java/com/jsiviewhelpers/textSize/RNTextSizeSpannedText.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/jsiviewhelpersexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/src/main/java/com/jsiviewhelpersexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/jsiviewhelpersexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/src/main/java/com/jsiviewhelpersexample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/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/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample.xcodeproj/xcshareddata/xcschemes/JsiViewHelpersExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample.xcodeproj/xcshareddata/xcschemes/JsiViewHelpersExample.xcscheme -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/Info.plist -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExample/main.m -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/JsiViewHelpersExampleTests/JsiViewHelpersExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/JsiViewHelpersExampleTests/JsiViewHelpersExampleTests.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/Other.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/src/Other.tsx -------------------------------------------------------------------------------- /example/src/Scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/src/Scroll.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/JsiViewHelpers-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/JsiViewHelpers-Bridging-Header.h -------------------------------------------------------------------------------- /ios/JsiViewHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/JsiViewHelpers.h -------------------------------------------------------------------------------- /ios/JsiViewHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/JsiViewHelpers.mm -------------------------------------------------------------------------------- /ios/JsiViewHelpers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/JsiViewHelpers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNTextSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/RNTextSize.h -------------------------------------------------------------------------------- /ios/RNTextSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/RNTextSize.m -------------------------------------------------------------------------------- /ios/Scroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/Scroller.h -------------------------------------------------------------------------------- /ios/Scroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/ios/Scroller.m -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/package.json -------------------------------------------------------------------------------- /react-native-jsi-view-helpers.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/react-native-jsi-view-helpers.podspec -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeymild/react-native-jsi-view-helpers/HEAD/yarn.lock --------------------------------------------------------------------------------