ValueButton inside a Row not displayed properly [answered]
ValueButton control when put within a Row does not get displayed properly. The QML file is here
Screenshot when ValueButton is displayed incorrectly
Screenshot when ValueButton is displayed without Row
The Row depends on the width of its children, and the children depend on the width of the Row. You could either fix the width of the Row, e.g. width: parent.width, or set the width of the Valuebuttons to an element not dependant on their width, e.g. width: page.width/2
mjones ( 2014-07-22 08:58:15 +0200 )editThanks , that worked.
Vidhuran ( 2014-07-22 10:19:18 +0200 )edit