SwiftUI 中 固定某个view的某个轴的尺寸的时候,fix
2023-02-19 本文已影响0人
小白lf
struct ContentView: View {
var body: some View {
Text("这个文本还挺长的,到达了一定字数后,就超过了一行的显示范围了!!!")
.frame(idealWidth: 300)
.fixedSize(horizontal: true, vertical: false)
.border(Color.blue)
.frame(width: 200, height: 100)
.border(Color.green)
.font(.title)
}
}