I'm using a CupertinoSldier
to Adjust the font size. the size does change, but the slider itself isn't moving from it's original location.
Here's the slider code:
child: CupertinoSlider(
min: 8.0,
max: 34.0,
activeColor: Colors.blue,
thumbColor: Colors.blueAccent,
value: widget.fontSize,
onChanged: (value) {
setState(() {
widget.fontSize = value;
});
},
)
Any ideas?