qmlfrontend/main.qml
changeset 14143 745c73e0e644
parent 12854 28cb18c5e712
--- a/qmlfrontend/main.qml	Tue Nov 06 16:40:54 2018 +0300
+++ b/qmlfrontend/main.qml	Tue Nov 06 17:00:35 2018 +0100
@@ -11,27 +11,8 @@
   SwipeView {
     id: swipeView
     anchors.fill: parent
-    currentIndex: tabBar.currentIndex
 
     Page1 {
     }
-
-    Page {
-      Label {
-        text: qsTr("Second page")
-        anchors.centerIn: parent
-      }
-    }
-  }
-
-  footer: TabBar {
-    id: tabBar
-    currentIndex: swipeView.currentIndex
-    TabButton {
-      text: qsTr("First")
-    }
-    TabButton {
-      text: qsTr("Second")
-    }
   }
 }