📦Text

SwiftUIControls ⟩ Text

// ⭐️ "string" 並非單純字串,它其實當作 "localization key"
Text("string")  

// ⭐️ 設定小數位數
Text("\(scale, specifier: "%.2f")" )  
// ⭐️ 設定小數位數(Slider 常用)
//                           小數位數 ↴
Text("scale:\(scale, specifier: "%0.2f")")       // 兩位小數
    .font(.system(.body, design: .monospaced))    // ⭐️ 使用等寬字體

Last updated

Was this helpful?