Undo a breaking change on ReactOverflowView (#49229)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49229

This interface was converted to Kotlin, but the single method should have been converted to a `val`.
People kotlin consumers could call ReactOverflowView.overflow; now they need to call getOverflow().

Changelog:
[Internal] [Changed] - Undo a breaking change on ReactOverflowView

Reviewed By: NickGerleman

Differential Revision: D69250226

fbshipit-source-id: 5c7cca8c83f5c76a9cc1d254f8aa51409150c356
This commit is contained in:
Nicola Corti
2025-02-07 02:10:38 -08:00
committed by Facebook GitHub Bot
parent 5a4962a0c1
commit 2f784ce9a5
@@ -17,5 +17,5 @@ public interface ReactOverflowView {
* Gets the overflow state of a view. If set, this should be one of [ViewProps#HIDDEN],
* [ViewProps#VISIBLE] or [ViewProps#SCROLL].
*/
public fun getOverflow(): String?
public val overflow: String?
}