SwiftUI 高级Image之仿微信朋友圈效果(2020 example)

SwiftUI 高级Image之仿微信朋友圈效果(2020 example)

代码

import SwiftUI

struct ListWithCircleImage: View {
    var body: some View {
        List{
            HStack{
                
                Image("circle")
                    .resizable()
                    .aspectRatio(contentMode: .fit)
                    .frame(width: 64, height: 64)
                    .clipShape(Circle())
                    .overlay(Circle().stroke(Color.black, lineWidth: 1))
                VStack(alignment: .leading) {
                    HStack(alignment: .firstTextBaseline) {
                        Image(systemName: "doc.text")
                        Text("销闲清课图")
                            .bold()
                    }
                    
                    // Show text if description exists
                    Text("此《销闲清课图》卷由明代孙克弘绘制。画卷内容为明晚期文人的闲雅生活方式,依次描绘:灯一龛、高枕、礼佛、烹茗、展画、焚香、月上、主客真率、灌花、摹帖、山游、薄醉、夜坐、听雨、阅耕、观史、新笋、洗研、赏雪等林下清课二十段,每段加上点题数语。此卷现藏于台北故宫博物院。")
                    HStack {
                        Image(systemName: "star")
                        Text("\(5000)")
                    }
                }
            }
        }
    }
}

效果

41085-38495d2e07ab7ba2.png
SwiftUI 高级Image之仿微信朋友圈效果教程源码

更多SwiftUI教程和代码关注专栏

发布了637 篇原创文章 · 获赞 4 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/iCloudEnd/article/details/104068344