Created
November 20, 2019 18:03
-
-
Save dllewellyn/9f58a95efdedb2be42bceb8f323215e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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