---
title: "init(_:systemImage:content:)"
framework: swiftui
role: symbol
role_heading: Initializer
path: "swiftui/tab/init(_:systemimage:content:)"
---

# init(_:systemImage:content:)

Creates a new tab that you can use in a tab view using a system image for the tab item’s image, and a localized string key label.

## Declaration

```swift
init(_ titleKey: LocalizedStringKey, systemImage: String, @ContentBuilder content: () -> Content) where Label == DefaultTabLabel
```

## Parameters

- `titleKey`: The localized string key label for the tab’s tab item.
- `content`: The view content of the tab.

## See Also

### Creating a tab with system symbol

- [init(_:systemImage:value:content:)](swiftui/tab/init(_:systemimage:value:content:).md)
- [init(_:systemImage:role:content:)](swiftui/tab/init(_:systemimage:role:content:).md)
- [init(_:systemImage:value:role:content:)](swiftui/tab/init(_:systemimage:value:role:content:).md)
