/Bio-Focussed-Reading-SwiftUI-Class

This is a SwiftUI implementation of the Bionic Reading algorithm.

Primary LanguageSwiftMIT LicenseMIT

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
Simulator Screen Shot - iPhone 14 Pro - 2023-02-09 at 15 25 02 Simulator Screen Shot - iPhone 14 Pro - 2023-02-09 at 15 25 05

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)
}