Flow Text Animation in SwiftUI

Jean-Marc Boullianne

Jean-Marc Boullianne
Level Up Coding
Published in
6 min readJan 12, 2020

--

A quick look at what we’ll be creating today. At the end of this tutorial you’ll be able to add this ‘Flow’ effect to any text in your SwiftUI app using a custom ViewModifier. See below for an example.

Text("FlowTextModifier")
.modifier(FlowTextModifier(background: Image("TestImage")))

It’s as simple as that!

Before getting started, please consider subscribing using this link, and if you aren’t reading this on TrailingClosure.com, please come check us out…

--

--