Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 372 Bytes

Conditional.md

File metadata and controls

19 lines (16 loc) · 372 Bytes

Conditional Blocks

Conditionals are directly supported by the function builder syntax:

  if order.spread != .none {
    TitledField("Spread") { 
      order.spread.name 
    }
  }
  else {
    Text("It ain't got no spread!")
  }
}