Skip to content

Commit

Permalink
Migrate ScrollWatcher to Kotlin (#48742)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #48742

Migrate ScrollWatcher to Kotlin

changelog: [internal] internal

Reviewed By: tdn120

Differential Revision: D68278771

fbshipit-source-id: 550c3b6c83999b1d610cb3d75ec91f552d89c028
  • Loading branch information
mdvacca authored and facebook-github-bot committed Jan 16, 2025
1 parent 40c18e1 commit c5041ea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit c5041ea

Please sign in to comment.