Skip to content

Commit 69837bd

Browse files
committed
chore: remove tabViewCustomization
1 parent 2f444ac commit 69837bd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/react-native-bottom-tabs/ios/TabView/NewTabView.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import SwiftUI
33
@available(iOS 18, macOS 15, visionOS 2, tvOS 18, *)
44
struct NewTabView: AnyTabView {
55
@ObservedObject var props: TabViewProps
6-
@AppStorage("sidebarCustomizations") var tabViewCustomization: TabViewCustomization
76

87
var onLayout: (CGSize) -> Void
98
var onSelect: (String) -> Void
@@ -43,8 +42,6 @@ struct NewTabView: AnyTabView {
4342
)
4443
}
4544
//.badge(tabData.badge)
46-
.customizationID(tabData.key)
47-
.customizationBehavior(.disabled, for: .sidebar, .tabBar)
4845
.accessibilityIdentifier(tabData.testID ?? "")
4946
}
5047
}
@@ -53,7 +50,6 @@ struct NewTabView: AnyTabView {
5350
.measureView { size in
5451
onLayout(size)
5552
}
56-
.tabViewCustomization($tabViewCustomization)
5753
.hideTabBar(props.tabBarHidden)
5854
}
5955
}

0 commit comments

Comments
 (0)