Warning, /frameworks/kirigami/tests/KeyboardListTest.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Aleix Pol Gonzalez <aleixpol@kde.org>
0003  *  SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
0004  *
0005  *  SPDX-License-Identifier: LGPL-2.0-or-later
0006  */
0007 
0008 import QtQuick
0009 import QtQuick.Controls
0010 
0011 import org.kde.kirigami as Kirigami
0012 
0013 Kirigami.ApplicationWindow {
0014     id: main
0015 
0016     pageStack.initialPage: Kirigami.ScrollablePage {
0017         ListView {
0018             model: 10
0019             delegate: Rectangle {
0020                 width: 100
0021                 height: 30
0022                 color: "white"
0023                 border.color: ListView.isCurrentItem ? "#1EA8F7" : "transparent"
0024                 border.width: 4
0025                 radius: 4
0026             }
0027         }
0028     }
0029 }