Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Created April 12, 2021 19:17
Show Gist options
  • Save jacobaraujo7/fbafd6bd008eb746fba578baf2b4adc9 to your computer and use it in GitHub Desktop.
Save jacobaraujo7/fbafd6bd008eb746fba578baf2b4adc9 to your computer and use it in GitHub Desktop.
...
Widget build(BuildContext context){
return Scaffold(
body: Center(
child: ScopedBuilder(
store: counter,
onState: (context, state) => Text('$state'),
onError: (context, error) => Text(error.toString()),
onLoading: (context) => CircularProgressIndicator(),
);
),
);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment