Fast-Reading-SwiftUI-Class
This is a simple SwiftUI implementation of the Bionic Reading(R) algorithm.
It is based on the idea that emphasized text attracts your eye more. By emphasizing the beginning of important words (and sparing out fillers like and or ...) the reading speed increases drastically
try to read this text | Compared to this one |
---|---|
The use of the class is pretty easy. The static func
FastReading.text("Some Text to display")
returns a SwiftUI struct of type Text.
The second parameter is a boolean parameter, wether it should be "modified" to be fast readable
@State private var fastReading: Bool = false
//...
var body: some View {
FastReading.text(text, convert: fastReading)
}