Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Created May 11, 2019 02:32
Show Gist options
  • Save jacobaraujo7/2c712cd228f023aa1f0135c1a76f4eee to your computer and use it in GitHub Desktop.
Save jacobaraujo7/2c712cd228f023aa1f0135c1a76f4eee to your computer and use it in GitHub Desktop.
...
Consumer<ValueBloc>(
builder: (BuildContext context, ValueBloc valueBloc) {
return _textValue(valueBloc.value);
},
),
Container(
height: 25,
),
Consumer<ValueBloc>(
builder: (BuildContext context, ValueBloc valueBloc) {
return Slider(
activeColor: Colors.white,
inactiveColor: Colors.white,
min: 0.0,
max: 1.0,
onChanged: valueBloc.onChangeValue,
value: valueBloc.value);
},
),
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment