requestChildFocus

open fun requestChildFocus(child: View, focused: View)

Since ReactScrollView handles layout changes on JS side, it does not call super.onlayout due to which mIsLayoutDirty flag in ScrollView remains true and prevents scrolling to child when requestChildFocus is called. Overriding this method and scrolling to child without checking any layout dirty flag. This will fix focus navigation issue for KeyEvents which are not handled by ScrollView, for example: KEYCODE_TAB.