Skip to content

Commit

Permalink
Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
muukii committed Apr 23, 2024
1 parent 3df40e8 commit 40fd97c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/FluidStack/ViewController/FluidViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -413,16 +413,16 @@ extension FluidViewController {
}
}

public enum TopBar {
public enum TopBar: Sendable {

public struct Navigation: Sendable {

public struct Navigation {

public enum Activity<NavigationBar: UINavigationBar> {
case didLoad(FluidViewController, NavigationBar)
case willTransition(FluidViewController, StackingRelation?, NavigationBar)
}

public enum DisplayMode {
public enum DisplayMode: Sendable {
/// It shows `UINavigationBar` if the target navigation-item has items (title, left items, right items).
case automatic
/// It shows always `UINavigationBar`.
Expand All @@ -436,7 +436,7 @@ extension FluidViewController {

public let navigationBarClass: UINavigationBar.Type

let _activityHandler: @MainActor (Activity<UINavigationBar>) -> Void
let _activityHandler: @Sendable @MainActor (Activity<UINavigationBar>) -> Void

/// Initializer
///
Expand Down

0 comments on commit 40fd97c

Please sign in to comment.