Colton Idle
01/05/2024, 1:18 PMMofe Ejegi
01/05/2024, 3:18 PMAndroidView
is consuming the click events and not letting the Box
get it.
You've probably figured that out already, let me see if I can find out how this was solved.Mofe Ejegi
01/05/2024, 3:40 PMclass TouchWebView(context: Context) : WebView(context) {
override fun onTouchEvent(event: MotionEvent?): Boolean {
if (event?.action == MotionEvent.ACTION_DOWN) {
// Check 250ms counter
}
return super.onTouchEvent(event)
}
}
Not the most ideal situation, since you'll have to make changes to your forked accompanist WebView implementation.