📜  快速隐藏按钮 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:01:03.843000             🧑  作者: Mango

代码示例1
//Use the .isHidden modifier 
//The button needs to be in the action: label: syntax
//This works if you are using swiftui and not uikit

Button(action: {
    //Actions here
}, label: {
      Text("")
          .isHidden(Bool)
    }
}
//We need to assign the isHidden to the label, and thus we need to use the action label syntax for more complex labels (Multiple text views, etc.)