Files
App/ios/WatchRunner Watch App/Views/AppInfoHeaderView.swift
2025-10-30 21:20:41 +08:00

26 lines
580 B
Swift

//
// AppInfoHeader.swift
// Runner
//
// Created by LittleSheep on 2025/10/30.
//
import SwiftUI
struct AppInfoHeaderView : View {
var body: some View {
VStack(alignment: .leading) {
HStack(spacing: 12) {
Image("Logo")
.resizable()
.frame(width: 40, height: 40)
VStack(alignment: .leading) {
Text("Solian").font(.headline)
Text("for Apple Watch").font(.system(size: 11))
}
}
}
}
}