In this post, I would like to discuss several ways how to create onboarding/introduction screens for your app. Let me keep aside the discussion if such screens are good UX pattern, but let me rather examine SwiftUI capabilities for such task instead.
The task
The task for todayโs SwiftUI exercise is simple. We would like our app to have N
onboarding pages which our user can browse through at the first app launch. Browsing can be made either with a swipe gesture or by pressing the next button.
Something like this:
IntroPageView
We will start with the preparation of a single view that contains an illustration, the title, and description. It is a basic View, you can notice that I like to use a combination of stacks
and Spacers
for easy alignment of the subviews.
Using TabView
If you are familiar with UIKit, you would most probably look for a Scrollview with set property isPagingEnabled = true
to start with. Unfortunately, SwiftUI does not have the exact counterpart, but that does not mean, there are no solutions for our case. Of course, one can use UIScrollView
based component and wrap it using UIViewRepresentable
to SwiftUI, but let me focus on pure SwiftUI solutions only.
Since the recent SwiftUI update, often denoted as SwiftUI2, we can use TabView
for our purpose. Even though TabView is mainly purposed for Views organized in Tabbar, applying .tabViewStyle(PageTabViewStyle())
creates exactly what we would expect from a paginated scroll view, it even creates a paging indicator at the bottom of the view!
(To remove or customize paging indicator appearance, set .indexViewStyle(PageIndexViewStyle())
appropriately ๐
Nice, clean, and easy. There is only one drawback – this works on iOS14 onlyโฆ So what if you want/need to support iOS13 as well?
As already mentioned, the standard Scrollview in SwiftUI has very limited capabilities compared to UIScrollView. It is not possible to enable pagination and prior to SwiftUI2 it was also impossible to scroll to a specific subview. (Now you can use ScrollViewReader
for that purpose, but again – supported on iOS14 only)
A bit harder way but with plenty of freedom is to take HStack
and implement the scrolling using gesture recognizers. With this approach, you had to work with stack offset and change it according to user actions. You can inspire and/or directly use the component SwiftUIPagingScrollview that I have prepared and is available on Github. The interface is far from ideal as it requires messing with GeometryReader
, but for illustration:
This solution gives us great scrolling experience:
Transitions and id
modifier
If you are not very strict about direct scrolling with your finger, an interesting approach is to use custom transitions that simulate the scrolling animation. The transitions are being triggered when views are being added or removed from the view hierarchy. You can create any fancy and asymmetric transition using composition of viewModifiers, but for now we will be OK just by combination of standard moving transition, like this:
Please note that I have added there also opacity change just for the fun and demonstration of transition combinations.
Now, to setup several pages with transitions one could write something like this:
As you see, that is not very nice and scaleable. (But note the usage of Group
view that sets the transition to each of its subviews)
Much nicer and more elegant solutuon is to use identity modifier id
like so:
Nice, right? Whenever assigned identifier changes, the view is being replaced with the new one and thus transitions are triggered both for the old view (removal) and new view (insertion).
Summary
Today I have tried to present several ways of building up onboarding screens in SwiftUI. I have examined three approaches that can satisfy most of the use cases – at least I believe so. Let me review them once again:
Use TabView
โ iOS14 only; low coolness factor (can be tweaked with parallax effects though); cannot set animation style to tab change
โ quick and easy
Implement custom Scrollview based on HStack
โ non-trivial implementation; mixing with other scrollable components might lead to issues
โ ability to fine-tune everything; great scrolling feeling
Use just transitions
โ no way to mimic true scrollview behavior (if you need it)
โ clean and easy; you can go crazy with custom transitions, like the one below. But that is for another story and my next blog post ๐.