Skip to content

Commit

Permalink
Fixed default values
Browse files Browse the repository at this point in the history
  • Loading branch information
cbowdoin committed Jan 17, 2025
1 parent d1f1d20 commit 0502aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FluentUI_iOS/Components/Tab Bar/TabBarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ open class TabBarView: UIView, TokenizedControl {
/// - Parameter showsItemTitles: Determines whether or not to show the titles of the tab bar items.
/// - Parameter hideSeparator: Removes the top divider displayed with the Tab Bar
/// - Parameter disableBlur: Disables the blur effect applied to the Tab Bar
@objc public init(showsItemTitles: Bool = false, hideSeparator: Bool = true, disableBlur: Bool = false) {
@objc public init(showsItemTitles: Bool = false, hideSeparator: Bool = false, disableBlur: Bool = false) {
self.showsItemTitles = showsItemTitles

if disableBlur {
Expand Down

0 comments on commit 0502aee

Please sign in to comment.