New Android GUI lib for GO
! 正在添加iOS支持,敬请期待 !
1.基础示例 'Hello world' code :
package faithdroid
func (a *MainActivity) OnCreate() {
LinearLayout(a).DeferShow().Size(-2, -2).Append(
TextView(a).SetId("text").Text("text view"),
Button(a).Size(-1, -1).Text("change text").OnClick(func() {
GetTextViewById("text").Text("text changed")
}))
}
2.结果 Result