Added navigation inside the app file:
import SwiftUI
import SwiftfulRouting
@main
struct AdsDemoApp: App {
var body: some Scene {
WindowGroup {
RouterView(addNavigationStack: false) { router in
SplashScreen(router: router)
}
}
}
}
got error:
Cannot convert value of type 'AnyRouter' to expected argument type 'Environment<AnyRouter>'
possibly it is because of your weird ios support - on release page you write that you drop ios 15 support but in readme you have 14+ and 17+ version support. What about ios 16+?
Added navigation inside the app file:
got error:
possibly it is because of your weird ios support - on release page you write that you drop ios 15 support but in readme you have 14+ and 17+ version support. What about ios 16+?