Striations is a library for building beautiful background by stripes. Allows you to set the space between the stripes, color and degree of inclination.
- In Xcode press
File -> Swift Packages -> Add Package Dependency...
- Enter the package URL https://github.com/kamsebgoralski/Striations
import SwiftUI
import Striations
struct ContentView: View {
var body: some View {
ZStack {
Striations(color: Color.pink.opacity(0.2), width: 16, spacing: 16, rotationDegrees: 45)
Striations(color: Color.pink.opacity(0.2), width: 16, spacing: 16, rotationDegrees: -45)
Text("Hello, world!")
.font(.system(size: 32, weight: .bold))
}.edgesIgnoringSafeArea(.all)
}
}
If you notice any issue, got stuck or just want to chat feel free to create an issue. I will be happy to help you.
Striations is released under the MIT License.