You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@
44
44
*[Create Views](#createviews-)
45
45
*[Create Actions](#createactions-)
46
46
*[Take decisions](#takedecisions-)
47
+
*[What to Improve / Open Points](#whattoimprove/openpoints-)
47
48
48
49
## Installation ⚙️
49
50
@@ -280,6 +281,13 @@ class ProfileCoordinator: Coordinator<ProfilePaths> {
280
281
As you can see, inside the coordinator we also have methods responsible to tell us wich paths are currently presented or removed.
281
282
The function buildView is where you gonna assemble your view and return it as **AnyView**. Jump has an extension **.any** that makes this construction easier. If you use **Dependecy Containers**, here is a good place to inject it inside your ViewModels.
282
283
284
+
## What to Improve / Open Points
285
+
286
+
* Directly wrap the content inside the ContextContent without the need for the user to do it always.
287
+
* Evaluate the possibility to implement the navigation stack for iOS>16
288
+
* Present in sequence
289
+
* Evaluate the need to make Coordinators to have parent/child relations between each other
0 commit comments