Skip to content

Commit

Permalink
Add native view config for collapsableChildren
Browse files Browse the repository at this point in the history
Summary:
collapsableChildren was introduced in D56226241

Changelog: [Internal]

Reviewed By: javache

Differential Revision: D56849868
  • Loading branch information
RSNara authored and facebook-github-bot committed May 2, 2024
1 parent 51acc30 commit 972ed76
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ public void setMinWidth(Dynamic minWidth) {

boolean mCollapsable;

@ReactProp(name = "collapsableChildren")
public void setCollapsableChildren(boolean collapsableChildren) {
// Do Nothing: Align with static ViewConfigs

}

@ReactProp(name = "collapsable")
public void setCollapsable(boolean collapsable) {
mCollapsable = collapsable;
Expand Down

0 comments on commit 972ed76

Please sign in to comment.