Skip to content

Instantly share code, notes, and snippets.

@dllewellyn
Created November 20, 2019 18:03
Show Gist options
  • Save dllewellyn/9f58a95efdedb2be42bceb8f323215e7 to your computer and use it in GitHub Desktop.
Save dllewellyn/9f58a95efdedb2be42bceb8f323215e7 to your computer and use it in GitHub Desktop.
class AccountTitle extends StatelessWidget {
final SupportedCurrency supportedCurrency;
const AccountTitle({@required this.supportedCurrency});
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(supportedCurrency.name),
Text(supportedCurrency.id)
],
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment