Skip to content

Commit

Permalink
fix: platform inconsistency, fabric Android build
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Nov 16, 2024
1 parent 657d307 commit f0e58d4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,12 @@ class KeyboardGestureAreaViewManager(
) {
manager.setScrollKeyboardOffScreenWhenVisible(view as KeyboardGestureAreaReactViewGroup, value)
}

@ReactProp(name = "textInputNativeID")
override fun setTextInputNativeID(
view: ReactViewGroup?,
value: String,
) {
// no-op
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,12 @@ class KeyboardGestureAreaViewManager(
) {
manager.setScrollKeyboardOffScreenWhenVisible(view, value)
}

@ReactProp(name = "textInputNativeID")
fun setTextInputNativeID(
view: KeyboardGestureAreaReactViewGroup,
value: String,
) {
// no-op
}
}

0 comments on commit f0e58d4

Please sign in to comment.