Warning, /system/mycroft-gui/documentation/skill-example/ui/paginationExample.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.4
0002 import QtQuick.Controls 2.2
0003 import QtQuick.Layouts 1.4
0004 import org.kde.kirigami 2.4 as Kirigami
0005 import Mycroft 1.0 as Mycroft
0006
0007 Mycroft.Delegate {
0008 Mycroft.PaginatedText {
0009 anchors.fill: parent
0010 text: sessionData.sampleText //The text that should be displayed
0011 currentIndex: 0 //The currently visible page number (starting from 0)
0012 }
0013 }