Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 0 additions & 102 deletions Sources/SkeletonUI/Extensions/Image+OptionalType.swift

This file was deleted.

5 changes: 0 additions & 5 deletions Sources/SkeletonUI/Extensions/Optional+OptionalType.swift

This file was deleted.

19 changes: 0 additions & 19 deletions Sources/SkeletonUI/Extensions/SecureField+OptionalType.swift

This file was deleted.

27 changes: 0 additions & 27 deletions Sources/SkeletonUI/Extensions/Text+OptionalType.swift

This file was deleted.

35 changes: 0 additions & 35 deletions Sources/SkeletonUI/Extensions/TextField+OptionalType.swift

This file was deleted.

29 changes: 0 additions & 29 deletions Sources/SkeletonUI/Extensions/Toggle+OptionalType.swift

This file was deleted.

4 changes: 0 additions & 4 deletions Sources/SkeletonUI/Protocols/OptionalType.swift

This file was deleted.

2 changes: 1 addition & 1 deletion Sources/SkeletonUI/Skeleton/SkeletonForEach.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SwiftUI

@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
public struct SkeletonForEach<Data, Content>: View where Data: RandomAccessCollection, Data.Element: Identifiable, Content: View {
public struct SkeletonForEach<Data, Content>: View where Data: RandomAccessCollection, Data.Element: Hashable, Content: View {
private let data: Data
private let quantity: Int
private let content: (Bool, Data.Element?) -> Content
Expand Down
2 changes: 1 addition & 1 deletion Sources/SkeletonUI/Skeleton/SkeletonList.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SwiftUI

@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
public struct SkeletonList<Data, Content>: View where Data: RandomAccessCollection, Data.Element: Identifiable, Content: View {
public struct SkeletonList<Data, Content>: View where Data: RandomAccessCollection, Data.Element: Hashable, Content: View {
private let data: Data
private let quantity: Int
private let content: (Bool, Data.Element?) -> Content
Expand Down
Loading