mirror of
https://github.com/home-assistant/iOS.git
synced 2026-02-15 07:49:30 -06:00
13 lines
314 B
Swift
13 lines
314 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
extension View {
|
|
func widgetBackground(_ backgroundView: some ShapeStyle) -> some View {
|
|
if #available(iOS 17.0, *) {
|
|
return containerBackground(backgroundView, for: .widget)
|
|
} else {
|
|
return background(backgroundView)
|
|
}
|
|
}
|
|
}
|