I noticed when working on the business sample App that I was experiencing a problem where my row’s seem shifted. It was because I was putting a background on the row using just the call to display.newRect() to handle the positioning:
row.bg = display.newRect(0,0, display.contentWidth, 60)
or something like that. With Graphics 2.0, that 0, 0 is the center of the rectangle, not the top right corner. By doing a:
row.bg = display.newRect(0, 0, display.contentWidth, 60)
row.bg.anchorX = 0
row.bg.anchorY = 0
it solved a problem I was having. The widgets themselves just have their anchor points working. Things you put in your row still need to honor G2.0 style positioning.
Rob