Skip to content

Commit

Permalink
Fixing issue with watchOS complication
Browse files Browse the repository at this point in the history
  • Loading branch information
mszpro committed Mar 26, 2023
1 parent 690b706 commit 87603b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import SwiftUI

@available(iOS 14.0, *)
@available(macOS 11.0, *)
@available(watchOS 6.0, *)
@available(watchOS 7.0, *)
public struct HorizontalBasicInfo_withSystemImage: View {

private var systemImageName: String
Expand Down
4 changes: 2 additions & 2 deletions Sources/SwiftUILibrary/TagView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import SwiftUI
*/
@available(iOS 15.0, *)
@available(macOS 11, *)
@available(watchOS 6.0, *)
@available(watchOS 7.0, *)
public struct TagView: View {

public enum TagStyle {
Expand Down Expand Up @@ -67,7 +67,7 @@ public struct TagView: View {

@available(iOS 15.0, *)
@available(macOS 11, *)
@available(watchOS 6.0, *)
@available(watchOS 7.0, *)
struct TagView_Previews: PreviewProvider {
static var previews: some View {
TagView(tagContent: "Testing", sfSymbolImageName: "checkmark.circle")
Expand Down
4 changes: 2 additions & 2 deletions Sources/SwiftUILibrary/TagsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import SwiftUI

@available(iOS 15.0, *)
@available(macOS 11, *)
@available(watchOS 6.0, *)
@available(watchOS 7.0, *)
public struct TagsView: View {

@Binding private var tags: [String]
Expand All @@ -36,7 +36,7 @@ public struct TagsView: View {

@available(iOS 15.0, *)
@available(macOS 11, *)
@available(watchOS 6.0, *)
@available(watchOS 7.0, *)
struct TagsView_Previews: PreviewProvider {
static var previews: some View {
TagsView(tags: .constant(["Tag 1", "Tag 2", "Tag 3"]))
Expand Down

0 comments on commit 87603b2

Please sign in to comment.