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

# init(_:systemImage:value:content:)

Creates a tab that the tab view presents when the tab view’s selection matches the tab’s value using a system image for the tab’s tab item image, with a localized string key label.

## Declaration

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

## Parameters

- `titleKey`: The localized string key label for the tab’s tab item.
- `systemImage`: The system image for the tab’s tab item.
- `value`: The selection value which selects this tab.
- `content`: The view content of the tab.

## See Also

### Creating a tab with system symbol

- [init(_:systemImage:content:)](swiftui/tab/init(_:systemimage: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)
