Add no-op sourceViewTag prop handler on Android

Prevents warnings from an unhandled prop on the Android side.

https://claude.ai/code/session_011cNDhEb2cDgg5QbVuzEyH1
This commit is contained in:
Claude
2026-02-28 19:24:26 +00:00
committed by Samuel Newman
parent e143bcd030
commit c21dd8cd8f
@@ -48,6 +48,8 @@ class BottomSheetModule : Module() {
Prop("preventExpansion") { view: BottomSheetView, prop: Boolean -> Prop("preventExpansion") { view: BottomSheetView, prop: Boolean ->
view.preventExpansion = prop view.preventExpansion = prop
} }
Prop("sourceViewTag") { _: BottomSheetView, _: Int? -> }
} }
} }
} }