forked from qt-creator/qt-creator
14 lines
150 B
QML
14 lines
150 B
QML
import Qt 4.7
|
|
|
|
Flipable {
|
|
width: 640
|
|
height: 480
|
|
front: Text {
|
|
text: "front"
|
|
}
|
|
back: Text {
|
|
text: "back"
|
|
}
|
|
|
|
}
|