This commit is contained in:
2024-01-23 18:00:59 +08:00
commit c10f0dd29d
55 changed files with 1906 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// ShowMore.swift
// demo
//
// Created by Jason on 2024/1/23.
//
import SwiftUI
struct ShowMore: View {
var title = "查看全部"
var body: some View {
HStack(spacing: 4) {
Text(title)
.font(.system(size: 14))
.foregroundColor(Color.gray)
Image(systemName: "chevron.forward")
.resizable()
.frame(width: 6, height: 10)
.foregroundColor(Color.gray)
}
}
}