---
title: "tabViewSidebarFooter(content:)"
framework: swiftui
role: symbol
role_heading: Instance Method
path: "swiftui/view/tabviewsidebarfooter(content:)"
---

# tabViewSidebarFooter(content:)

Adds a custom footer to the sidebar of a tab view.

## Declaration

```swift
nonisolated func tabViewSidebarFooter<Content>(@ContentBuilder content: () -> Content) -> some View where Content : View

```

## Discussion

Discussion The footer appears at the bottom of the sidebar after any tab labels and can scroll with the content. The footer is only visible when the TabView is displaying the sidebar. The following example adds a link to contact support to the bottom of the sidebar content: TabView {     Tab("Home", systemImage: "house") {         HomeView()     }

Tab("Alerts", systemImage: "bell") {         AlertsView()     }

Tab("Browse", systemImage: "list.bullet") {         MyBrowseView()     } } .tabViewStyle(.sidebarAdaptable) .tabViewSidebarFooter {     ContactSupportLink() }

## See Also

### Configuring a tab bar

- [defaultAdaptableTabBarPlacement(_:)](swiftui/view/defaultadaptabletabbarplacement(_:).md)
- [defaultTabBarPlacement(_:)](swiftui/view/defaulttabbarplacement(_:).md)
- [tabViewSidebarHeader(content:)](swiftui/view/tabviewsidebarheader(content:).md)
- [tabViewSidebarBottomBar(content:)](swiftui/view/tabviewsidebarbottombar(content:).md)
- [AdaptableTabBarPlacement](swiftui/adaptabletabbarplacement.md)
- [tabBarPlacement](swiftui/environmentvalues/tabbarplacement.md)
- [TabBarPlacement](swiftui/tabbarplacement.md)
- [isTabBarShowingSections](swiftui/environmentvalues/istabbarshowingsections.md)
- [tabBarMinimizeBehavior(_:)](swiftui/view/tabbarminimizebehavior(_:).md)
- [TabBarMinimizeBehavior](swiftui/tabbarminimizebehavior.md)
- [TabViewBottomAccessoryPlacement](swiftui/tabviewbottomaccessoryplacement.md)
