8000 NeumorphicSlider doesn't slide. · Issue #273 · Idean/Flutter-Neumorphic · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000
NeumorphicSlider doesn't slide. #273
Open
@Mustafa-Altameemi

Description

@Mustafa-Altameemi

NeumorphicSlider doesn't slide (move) left or right unless I put another finger on any location of the slider.

        NeumorphicSlider(
          height: 15,
          min: 0.0,
          max: 100.0,
          value: _sliderValue,
          style: const SliderStyle(
              accent: Colors.lightGreenAccent,
              variant: Colors.deepOrangeAccent,
              border: NeumorphicBorder(width: 0.0)),
          
          onChangeStart: (percent) {
            setState(() {});
          },
          onChangeEnd: (percent) {
            setState(() {});
          },
          onChanged: (value) {
            setState(() {
              _sliderValue = value;
            });
          },
        ),

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0