03:Swift-Image

 

正文

import SwiftUI
import Foundation


struct ImagePage: View {
    var body: some View {
        
        Image("icon")
            /*
             resizable,重新设置大小
             Image必须通过resizable方法才能调整大小,否则设置frame没有作用
             */
            .resizable()
            .frame(width: 30, height: 30, alignment: .center)
            .onTapGesture {
                print("点击图片:")
            }
    }
}

 

posted on 2023-03-19 18:19  风zk  阅读(12)  评论(0编辑  收藏  举报

导航