mirror of
https://github.com/exyte/ConcentricOnboarding.git
synced 2026-04-02 23:58:57 -06:00
Navigate to another swiftui view in the insteadOfCyclingToFirstPage callback #15
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @anestis1000 on 9/5/2020
Hello
In the callback a.insteadOfCyclingToFirstPage = {
print("do your thing")
}
how can i move to a new swiftUI View. In this point I don't have any navigationView or NavigationLink.
For example if i use something like that:
a.insteadOfCyclingToFirstPage = {
MyView()
}
doesn't do anything (and i think its normal). I receive as warning Result of 'MyView' initializer is unused
Thanks