Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,12 @@ - (void)mountChildComponentView:(RNGHUIView<RCTComponentViewProtocol> *)childCom
[_buttonView mountChildComponentView:childComponentView index:index];
}

- (void)unmountChildComponentView:(RNGHUIView<RCTComponentViewProtocol> *)childComponentView index:(NSInteger)index
- (void)unmountChildComponentView:(RNGHUIView<RCTComponentViewProtocol> *)childComponentView
index:(NSInteger)__unused index
{
[_buttonView unmountChildComponentView:childComponentView index:index];
if (childComponentView.superview == _buttonView) {
[childComponentView removeFromSuperview];
}
}

- (LayoutMetrics)buildWrapperMetrics:(const LayoutMetrics &)metrics
Expand Down
Loading