i want to make a range slider in flutter which has variable discrete divisions. For example in normal slider divisions are like- 0-10,10-20,20-30,30-40 ......100.Here 1/10 length is given to each division. But i want to make a range slider in which divisions are like 0-10,10-50,50-100. so 1/3 length given to all these 3 divisions.
normal slider- this slider shows all number between 1-100.change in value per division is constant.
0 10 20 30 40 50 60 70 80 90 100
| | | | | | | | | | |
what i want to make- this slider also shows all numbers between 1-100. but slider will go slowly from 0-10, then faster from 10-50, then more faster from 50-100.
0 10 50 100
| | | | | | | | | | |
Actually in my project i want to make a slider such that the we can choose easily the numbers from 0-1000(100 per divisions), then after that the speed increases from 1000 - 100000(1000 per divisions) and then 100000-1000000(100k per divisions). these 3 in one range slider. This is the best way i can explain the problem.