gitextract_w4c9g9ll/ ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── ReactNativeAutogrowTextinput.podspec ├── android/ │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ └── com/ │ │ └── wix/ │ │ └── autogrowtextinput/ │ │ ├── AutoGrowTextInputModule.java │ │ └── AutoGrowTextInputPackage.java │ └── res/ │ └── values/ │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── example/ │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── android/ │ │ ├── app/ │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── autogrowtextinput/ │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res/ │ │ │ └── values/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.js │ ├── app.json │ ├── index.android.js │ ├── index.ios.js │ ├── ios/ │ │ ├── AutogrowTextinput/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── AutogrowTextinput-tvOS/ │ │ │ └── Info.plist │ │ ├── AutogrowTextinput-tvOSTests/ │ │ │ └── Info.plist │ │ ├── AutogrowTextinput.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── AutogrowTextinput-tvOS.xcscheme │ │ │ └── AutogrowTextinput.xcscheme │ │ ├── AutogrowTextinput.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── AutogrowTextinputTests/ │ │ │ ├── AutogrowTextinputTests.m │ │ │ └── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ └── package.json ├── index.js ├── ios/ │ ├── AutoGrowTextInput.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── AutogrowTextInputManager.h │ └── AutogrowTextInputManager.m ├── package.json └── src/ └── AutoGrowingTextInput.js