fix(app): add missing components

This commit is contained in:
Ronan Abhamon 2016-09-06 10:37:32 +02:00
parent 7137e95d9d
commit bfe5579b2e
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,6 @@
import QtQuick 2.5
Text {
anchors.centerIn: parent
text: qsTr('helloWorld')
}

View file

@ -0,0 +1,22 @@
import QtQuick 2.5
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "qrc:/ui/components/SearchBar"
ApplicationWindow {
id: mainWindow
visible: true
header: ToolBar {
RowLayout {
anchors.fill: parent
}
}
footer: TabBar {
}
SearchBar {}
}