mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-28 12:54:45 +00:00
11 lines
447 B
Text
11 lines
447 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.2 OR LicenseRef-Slint-commercial
|
|
|
|
export component Slider inherits NativeSlider {
|
|
value: root.minimum;
|
|
accessible-role: slider;
|
|
accessible-value: root.value;
|
|
accessible-value-minimum: root.minimum;
|
|
accessible-value-maximum: root.maximum;
|
|
accessible-value-step: (root.maximum - root.minimum) / 100;
|
|
}
|