mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Migrate ScrollWatcher to Kotlin (#48742)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48742 Migrate ScrollWatcher to Kotlin changelog: [internal] internal Reviewed By: tdn120 Differential Revision: D68278771 fbshipit-source-id: 550c3b6c83999b1d610cb3d75ec91f552d89c028
This commit is contained in:
committed by
Facebook GitHub Bot
parent
40c18e1259
commit
c5041ea099
+2
-2
@@ -5,8 +5,8 @@
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
package com.facebook.react.views.textinput;
|
||||
package com.facebook.react.views.textinput
|
||||
|
||||
public interface ScrollWatcher {
|
||||
void onScrollChanged(int horiz, int vert, int oldHoriz, int oldVert);
|
||||
public fun onScrollChanged(horiz: Int, vert: Int, oldHoriz: Int, oldVert: Int): Unit
|
||||
}
|
||||
Reference in New Issue
Block a user