mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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:
committed by
Facebook GitHub Bot
parent
5a4962a0c1
commit
2f784ce9a5
+1
-1
@@ -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?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user