We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708ee25 commit 9d21cc2Copy full SHA for 9d21cc2
android/src/main/java/com/lodev09/truesheet/core/RootSheetView.kt
@@ -86,15 +86,15 @@ class RootSheetView(private val context: Context?) :
86
}
87
88
@Deprecated("Deprecated in Java")
89
- override fun onChildStartedNativeGesture(ev: MotionEvent?) {
+ override fun onChildStartedNativeGesture(ev: MotionEvent) {
90
eventDispatcher?.let {
91
if (ev != null) {
92
jSTouchDispatcher.onChildStartedNativeGesture(ev, it)
93
94
95
96
97
- override fun onChildStartedNativeGesture(childView: View, ev: MotionEvent) {
+ override fun onChildStartedNativeGesture(childView: View?, ev: MotionEvent) {
98
eventDispatcher?.let { jSTouchDispatcher.onChildStartedNativeGesture(ev, it) }
99
jSPointerDispatcher?.onChildStartedNativeGesture(childView, ev, eventDispatcher)
100
0 commit comments