Guest User

Untitled

a guest
Dec 15th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. RaisedButton(
  2. onPressed: () {
  3. Model model = Model.of(context);
  4. Model.update(context, Model(value: model.value + 1));
  5. },
  6. child: Text('Hello World ${Model.of(context).value}'),
  7. );
Add Comment
Please, Sign In to add comment