我想问一下,如何使用 cosmicmind/Material 处理 Material Button 的事件?我目前有这个代码。现在,我想在用户点击或单击按钮时执行一项功能。谢谢!
fileprivate func prepareRaisedButton() {
let button = RaisedButton(title: "Create an account", titleColor : .white)
button.pulseColor = .white
button.backgroundColor = Color.teal.base
view.layout(button)
.height(ButtonLayout.Raised.height)
.top(18 * constant).horizontally(left : constant, right : constant)
}