Skip to content

Instantly share code, notes, and snippets.

View yujinqiu's full-sized avatar
💭
🚀

yujinqiu

💭
🚀
View GitHub Profile
@yujinqiu
yujinqiu / WeatherView.swift
Created November 8, 2023 03:30 — 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))