Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created September 13, 2018 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/d5aa27d1bab546443cb9a6efd778b038 to your computer and use it in GitHub Desktop.
Save MarcinusX/d5aa27d1bab546443cb9a6efd778b038 to your computer and use it in GitHub Desktop.
class HeightSlider extends StatelessWidget {
final int height;
const HeightSlider({Key key, this.height}) : super(key: key);
@override
Widget build(BuildContext context) {
return IgnorePointer(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
SliderLabel(height: height),
Row(
children: <Widget>[
SliderCircle(),
Expanded(child: SliderLine()),
],
),
],
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment