Application Development - Swift for Android
You are in the most incredible place to start building Android apps in Swift!
This code is absolute reality now:
ConstraintLayout {
VStack {
TextView("Hello from Swift!")
.width(.matchParent)
.height(.wrapContent)
.textColor(.green)
.marginBottom(16)
MaterialButton("Tap Me")
.onClick {
print("Button tapped!")
}
}
.centerVertical()
.leftToParent()
.rightToParent()
}
You can create stunning user interfaces natively in Swift!
Droid framework is the foundation for building rich Android apps with nat...
Read more at docs.swifdroid.com