Skip to content

Instantly share code, notes, and snippets.

@blackholeearth
blackholeearth / customstep_sliderrange.dart
Last active April 29, 2022 10:44
customstep flutter slider
import 'package:flutter/material.dart';
import 'dart:math';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
static const String _title = 'Flutter Code CustomStep_RangeSlider';