The feeling of slow rotation is augmented by the too many unneeded rotations. Swipe away from the browser: rotate. Go to another browser window: rotate. All apps must update layout each time. The choice of rotation being in-app instead of in window manager was wrong.
import QtQuick 1.1 import com.nokia.meego 1.0 Item { id: appWindow width: screen.displayWidth height: screen.displayHeight Label { id: label anchors.centerIn: parent text: "In landscape" font.bold: true font.pixelSize: 40 color: "white" } states: State { name: "portrait" when: screen.currentOrientation === Screen.Portrait PropertyChanges { target: label; text: "In portrait"; rotation: 270 } } }