Skip to content

Instantly share code, notes, and snippets.

View wuqinqiang's full-sized avatar
🐈
Less is more

Remember wuqinqiang

🐈
Less is more
View GitHub Profile
@wuqinqiang
wuqinqiang / WeatherView.swift
Created November 8, 2023 02:20 — forked from unixzii/WeatherView.swift
A demo of implementing iOS Weather card in SwiftUI.
import SwiftUI
struct HeaderView: View {
var body: some View {
HStack {
Image(systemName: "info.circle.fill")
.resizable()
.frame(width: 12, height: 12)
Text("Section Header")
.font(.system(size: 13))