It looks like you're new here. If you want to get involved, click one of these buttons!
_G.GUI.LoadTheme("theme_1", "themes/theme_1/") _G.GUI.NewWindow( { x = "center", y = "bottom", name = "Win1", theme = "theme_1", width = "40%", height = "auto" } ) _G.GUI.NewButton( { name = "MyButton1", x = "auto", y = "auto", width = "100%", parentGroup = "Win1", theme = "theme_1", caption = "I am a button!", textAlign = "center", icon = 15, onRelease = function() print("button was tapped") end, } ) _G.GUI.NewButton( { name = "MyButton2", x = "auto", y = "auto", width = "100%", parentGroup = "Win1", theme = "theme_1", caption = "I am another button!", textAlign = "center", icon = 15, onRelease = function() print("button was tapped") end, } ) _G.GUI.GetHandle("Win1"):layout(true) |
Comments
Likes: antix
Thanks in advance.
Likes: antix
Likes: antix
Does anybody know what is current state of WidgetCandy in 2018?
Does it work well with Gideros or something is broken?
"What one programmer can do in one month, two programmers can do in two months." - Fred Brooks
“The more you do coding stuff, the better you get at it.” - Aristotle (322 BC)
I get email update of this on 11/05/2014
(Widget Candy for Gideros Update 1.1.75)
Just reopen and test for you. It works quite good!
The only problem is they do not update quite long ago
Likes: Apollo14
Likes: Apollo14
Likes: Apollo14
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Its biggest problem to me is the learning curve: it really lacks tutorials and documentation, and even if the code is well written I personally find it very hard to follow and to understand how to fit examples to my needs.
Likes: antix
Check out the project and demo at github (amnond/gideros-components)
Still working on adding stuff, let me know if you have suggestions.
Likes: keszegh, Apollo14, antix, totebo
Fragmenter - animated loop machine and IKONOMIKON - the memory game
Usually I just set appWidth&appHeight as constants, scaling mode to 'letterbox', and don't bother about adaptive design, stretching the grid, etc.
(I have an allergy, I've eaten too much CSS sh*t when I was working with websites, I don't want any of this stuff in my life anymore )
"What one programmer can do in one month, two programmers can do in two months." - Fred Brooks
“The more you do coding stuff, the better you get at it.” - Aristotle (322 BC)