import
QtQuick 2.5
import
fbx.application 1.0
import
fbx.ui.page 1.0
Page
{
Text
{
anchors.centerIn
: parent
text
:
"Bienvenue sur la premième page"
color
:
"white"
font.pixelSize
: 35
focus
: true
Keys.onReturnPressed
: stack.push(
"page2.qml")
}
}