- August 28, 2025
- Mins Read
A SwiftUI Marquee or “scrolling text” effect found in Apple native apps. For when one line isn’t enough, but two is just too much 😉
Add this repository as a Swift Package Dependency to your project. You find the option in Xcode unter “File > Swift Packages > Add Package Dependency…”. Paste the link to this project in and voila!
import SwiftUI
import MarqueeText
struct ContentView: View {
var body: some View {
MarqueeText(
text: “A subtitle that is way too long, but it scrolls homie”,
font: UIFont.preferredFont(forTextStyle: .subheadline),
leftFade: 16,
rightFade: 16,
startDelay: 3
)
}
}
This package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...
SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...
Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...