mirror of
https://github.com/yattee/yattee.git
synced 2025-10-12 10:28:11 +00:00
Feed cache
This commit is contained in:
24
Shared/Views/CacheStatusHeader.swift
Normal file
24
Shared/Views/CacheStatusHeader.swift
Normal file
@@ -0,0 +1,24 @@
|
||||
import SwiftUI
|
||||
|
||||
struct CacheStatusHeader: View {
|
||||
var refreshTime: String
|
||||
var isLoading = false
|
||||
|
||||
var body: some View {
|
||||
HStack(spacing: 6) {
|
||||
ProgressView()
|
||||
.progressViewStyle(.circular)
|
||||
.scaleEffect(Constants.progressViewScale, anchor: .center)
|
||||
.opacity(isLoading ? 1 : 0)
|
||||
Text(refreshTime)
|
||||
}
|
||||
.font(.caption)
|
||||
.foregroundColor(.secondary)
|
||||
}
|
||||
}
|
||||
|
||||
struct CacheStatusHeader_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
CacheStatusHeader(refreshTime: "15:10:20")
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user