Add backports to get Ferrite working on iOS 14. Signed-off-by: kingbri <bdashore3@gmail.com>
16 lines
253 B
Swift
16 lines
253 B
Swift
//
|
|
// View.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 8/15/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
// MARK: Modifiers
|
|
|
|
func dynamicAccentColor(_ color: Color) -> some View {
|
|
modifier(DynamicAccentColor(color: color))
|
|
}
|
|
}
|