gpt4 book ai didi

ios - 如何在 SwiftUI 中自定义文本

转载 作者:行者123 更新时间:2023-12-01 16:01:30 24 4
gpt4 key购买 nike

我正在尝试复制一个计算器应用程序。我似乎无法修改我的“文本” View 以使其看起来相似。

Text("0")
.background(Color.gray)
.cornerRadius(10)
.font(.largeTitle)

但它与我试图复制的内容相去甚远。
我尝试了偏移,但它偏移了整个“文本” View 。

基本上我希望我的文本看起来像图像中指向的内容

How to customize this area

最佳答案

您可以使用 ZStack 来实现此目的。 , VStack , HStackSpacer() .这是一个简单的例子:

struct CalculatorText: View {

var body: some View {

ZStack {

Rectangle()
.cornerRadius(10)
.foregroundColor(.gray)


VStack {

Spacer() // now the text will be on the bottom of ZStack

HStack {

Spacer() // and now the text will be on the right side of ZStack

Text("0")
.bold()
.font(.system(size: 30))
.foregroundColor(.white)
.multilineTextAlignment(.trailing)
.padding()

}
}


}
.frame(height: 100)
.padding()

}

}

结果将是:
enter image description here

关于ios - 如何在 SwiftUI 中自定义文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59761660/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com