stinsen icon indicating copy to clipboard operation
stinsen copied to clipboard

Coordinators in SwiftUI. Simple, powerful and elegant.

Results 49 stinsen issues
Sort by recently updated
recently updated
newest added

using stinsen 2.0.9 and try to move to previous page from current stack with focusFirst. Debug shows that stack has been changed internally but displayed page doesn't changed. By the...

Let say I have a coordinator like this: ``` import Foundation import RMStoreKit import Stinsen import SwiftUI final class AccountCoordinator: NavigationCoordinatable { let stack = NavigationStack(initial: \AccountCoordinator.start) @Root var start...

I have memory leaks when using Stinsen. Can you suggest a solution for this? When I navigate to different screen multiple times, the app becomes unresponsive.

Hi, Is there already an option to display modal with specific presentation detents? If not, are yo planning to add this possibility in near future?

I have A>B>C>D forms, and i want to pop to A without showing B and C by focusFirst. Now when we use focusFirst user sees B and C forms. Maybe...

The value of activeItem is missing because it is not set after setting allItems.

Hi! I've adapted example app to handle deeplink, but app crashes when trying to get current coordinator: ```swift final class AppCoordinator: NavigationCoordinatable { var stack: Stinsen.NavigationStack @Root var unauthenticated =...

Does Stinsen have any animation on dismissCoordinator? How to enable it incase it has. I have child coordinator which is dismissed without any of animation.😢

Hello! I want to add localization on the fly for my project. However, I have @Published property for the current language in custom TabCoordinator, which conforms TabCoordinatable. How can I...