Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Last active May 11, 2019 02:01
Show Gist options
  • Select an option

  • Save jacobaraujo7/4f1072f93e3e0392106d45025b1dff3f to your computer and use it in GitHub Desktop.

Select an option

Save jacobaraujo7/4f1072f93e3e0392106d45025b1dff3f to your computer and use it in GitHub Desktop.
import 'package:bloc_pattern/bloc_pattern.dart';
class ValueBloc extends BlocBase {
double value = 0.0;
onChangeValue(double v) {
value = v;
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment