Created
May 18, 2020 16:10
-
-
Save theindianappguy/6248e3df95d93c185573f70ee4efe82f 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
Widget brandName() { | |
return Row( | |
mainAxisAlignment: MainAxisAlignment.center, | |
mainAxisSize : MainAxisSize.min | |
children: <Widget>[ | |
Text( | |
"Wallpaper", | |
style: TextStyle(color: Colors.black87, fontFamily: 'Overpass'), | |
), | |
Text( | |
"Hub", | |
style: TextStyle(color: Colors.blue, fontFamily: 'Overpass'), | |
) | |
], | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A quick little fix
Please add a comma at the end of line 4 to avoid syntax errors.