the size of the tabbar on my app is way too small,
i recently changed the resolution in config.lua to 640x960
im trying to adjust the size of the tab bar but its not doing anything
here is the code for the tab bar
how can i adjust its size?
-- table to setup buttons tabButtons = { { label="Thropia", defaultFile = "icon1.png", overFile = "icon1-down.png", width = 60, height = 60, onPress=onFirstView, selected=true }, { label="Enthalpis", defaultFile = "icon2.png", overFile = "icon2-down.png", width = 60, height = 60, onPress=onSecondView }, { label="Diseases", defaultFile = "icon3.png", overFile = "icon3-down.png", width = 60, height = 60, onPress=onThirdView }, } -- create the actual tabBar widget tabBar = widget.newTabBar{ hieght = 600, left = 0, top = display.contentHeight - 90, width = display.contentWidth, -- 50 is default height for tabBar widget buttons = tabButtons }
thanks
