diamond_node_slider 1.0.0 copy "diamond_node_slider: ^1.0.0" to clipboard
diamond_node_slider: ^1.0.0 copied to clipboard

The node is a diamond slider, which can achieve two effects with transition value and node value.

diamond_node_slider #

  1. The node is a diamond slider.The node can also be circular.
  2. which can achieve two effects with transition value and no transition value.
  3. bubble displays its value, and the node text can not be displayed.

使用 #

          ///常用
           DiamondNodeSlisder((value) {
             print('value===${value}');
           },
             activeTrackColor: Color(0xFF878E9A),
             unActiveTrackColor: Color(0xFFEBEBEB),
             width: 300,
             height: 2.5,
             divisions: 4,
             maxValue: 100,
             minValue: 0,
             textUnitStr: '%',
           ),




           ///最小值不为0
           DiamondNodeSlisder((value) {
             print('value===${value}');
             },
             activeTrackColor: Colors.red,
             unActiveTrackColor: Color(0xFFEBEBEB),
             width: 300,
             height: 2.5,
             divisions: 5,
             maxValue: 125,
             minValue: 1,
             textUnitStr: 'x',
           ),



           ///节点文字不显示
           DiamondNodeSlisder((value) {
               print('value===${value}');
           },
             activeTrackColor: Colors.blue,
             unActiveTrackColor: Color(0xFFEBEBEB),
             width: 300,
             height: 2.5,
             divisions: 4,
             maxValue: 80,
             minValue: 0,
             textShowBool: false,
           ),

    

           ///节点圆形、设置轨道高度
           DiamondNodeSlisder((value) {
             print('value===${value}');
           },
             activeTrackColor: Colors.orange,
             unActiveTrackColor: Color(0xFFEBEBEB),
             width: 300,
             height: 5,//轨道高度
             divisions: 4,
             maxValue: 120,
             minValue: 0,
             isRhombus: false,//非菱形
           ),

   

           ///直接跳到节点,无过渡
           DiamondNodeSlisder((value) {
             print('value===${value}');
           },
             activeTrackColor:  Colors.green,
             unActiveTrackColor: Color(0xFFEBEBEB),
             width: 300,
             height: 2.5,
             divisions: 5,
             maxValue: 150,
             minValue: 0,
             textUnitStr: 'm',
             toNodeBool: true,//滑动跳到节点
           ),          

效果 #

diamond_node_slider|

13
likes
0
pub points
70%
popularity

Publisher

unverified uploader

The node is a diamond slider, which can achieve two effects with transition value and node value.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on diamond_node_slider