Skip to content

Commit 6c16f71

Browse files
committed
refactor: remove unused makeUIView method from RepresentableViewController
1 parent 475536e commit 6c16f71

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/react-native-bottom-tabs/ios/RepresentableViewController.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,13 @@ struct RepresentableViewController: UIViewControllerRepresentable {
2525

2626
#else
2727

28-
func makeUIView(context: Context) -> PlatformView {
29-
let wrapper = UIView()
30-
wrapper.addSubview(view)
31-
return wrapper
32-
}
3328
func makeUIViewController(context: Context) -> UIViewController {
3429
let contentVC = UIViewController()
3530
contentVC.view.backgroundColor = .clear
3631
contentVC.view.addSubview(view)
3732

3833
return contentVC
3934
}
40-
func updateUIView(_ uiView: PlatformView, context: Context) {}
4135

4236
#endif
4337
}

0 commit comments

Comments
 (0)