Skip to content

Instantly share code, notes, and snippets.

@dllewellyn
Created November 20, 2019 18:06
Show Gist options
  • Save dllewellyn/951e59768354b09a938fd23886e9749c to your computer and use it in GitHub Desktop.
Save dllewellyn/951e59768354b09a938fd23886e9749c to your computer and use it in GitHub Desktop.
class BalanceWidget extends StatelessWidget {
final double balance;
const BalanceWidget({Key key, this.balance}) : super(key: key);
@override
Widget build(BuildContext context) {
return Text(balance.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment