gpt4 book ai didi

flutter - 如何在 flutter slider 小部件上隐藏拇指?

转载 作者:行者123 更新时间:2023-12-04 11:43:00 25 4
gpt4 key购买 nike

我必须隐藏滑块小部件上的拇指。我使用 SliderTheme 小部件将拇指颜色设置为透明。这是行不通的。如何隐藏拇指?

我将拇指颜色设置为透明。

Center(
child: SliderTheme(
child: Slider(
value: 50,
max: 100,
min: 0,
activeColor: Colors.black,
inactiveColor: Colors.grey,
onChanged: (double value) {},
),
data: SliderTheme.of(context).copyWith(
trackHeight: 28,
thumbColor: Colors.transparent,
thumbShape: null),
),
)


我希望没有拇指的滑块小部件。

最佳答案

有点解决方法,但您可以设置 thumbShape半径为0:

Center(
child: SliderTheme(
child: Slider(
value: 50,
max: 100,
min: 0,
activeColor: Colors.black,
inactiveColor: Colors.grey,
onChanged: (double value) {},
),
data: SliderTheme.of(context).copyWith(
trackHeight: 28,
thumbColor: Colors.transparent,
thumbShape: RoundSliderThumbShape(enabledThumbRadius: 0.0)),
),
),

关于flutter - 如何在 flutter slider 小部件上隐藏拇指?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57724358/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com