Coming soon
Since I'm focusing on XUI now I'm trying to create an XUI library that allows you to create views (panel label, edittext) directly from code and design (CustomView) avoiding the double passage
But doing so directly
Also being able to create various views from design.
They will also be implementing all properties, methods and even all view events. Making the creation of uniform views on all platforms and not rewriting the code but re-using it internally on all B4X platforms
Since I'm focusing on XUI now I'm trying to create an XUI library that allows you to create views (panel label, edittext) directly from code and design (CustomView) avoiding the double passage
B4X:
Private Label1 as Label
Label1.Initialize("Label1")
Dim B4XLabel1 as B4XView = Label1
B4X:
Private B4XLabel1 as B4XLabel
B4XLabel1.Initialize(Me,"B4XLabel1")
They will also be implementing all properties, methods and even all view events. Making the creation of uniform views on all platforms and not rewriting the code but re-using it internally on all B4X platforms
Last edited: