Created
May 11, 2019 02:32
-
-
Save jacobaraujo7/2c712cd228f023aa1f0135c1a76f4eee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
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