具有自定义或系统字体大小的文本(以及如何获取该数字)-SwiftUI

Text with either custom OR system font size (and how to get that number) - SwiftUI

我可以像下面那样做吗?

Text(text)
    .font(.system(size: (textSize != nil) ? textSize! : Font.body))

如何找到 Font.body 后面的数字?或者如何在自定义尺寸和系统尺寸之间切换?

没有Font.body.size属性.

我想你想要的是

Text(text)
    .font(textSize != nil ? .system(size: textSize!) : Font.body)