Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.8.0
-
None
Description
It's barely visible even with size: 4. At first I thought I did something wrong and caused scrollbar to break because it's too hard to see to the point I missed it.
Code:
import QtQuick import QtQuick.Controls.FluentWinUI3 import QtQuick.Layouts import Qt.labs.platform ApplicationWindow { width: 640 height: 480 visible: true Flickable { anchors.fill: parent clip: true contentHeight: column.height ColumnLayout { id: column width: parent.width Repeater { model: 100 delegate: Text { text: "ABCDEFG\n1234567" } } } ScrollBar.vertical: ScrollBar { size: 4 } } }
In comparison, this is the scrollbar from WinUI (collapsed):
WinUI (expanded):