blob: 55f1fa9d768636cfa6bafee4382e03dc432b1d38 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import SkeletonUI
import SwiftUI
struct PostGridThumbnailPlaceholderView: View {
var body: some View {
RoundedRectangle(cornerRadius: 8)
.skeleton(with: true, shape: .rounded(RoundedType.radius(8)))
.aspectRatio(1, contentMode: .fit)
}
}
#Preview {
PostGridThumbnailPlaceholderView()
}
|