Skip to content

Instantly share code, notes, and snippets.

@ptyagicodecamp
Created June 11, 2019 20:32
Show Gist options
  • Save ptyagicodecamp/849cd1f69ca5e9fd35475ad6fde0cb82 to your computer and use it in GitHub Desktop.
Save ptyagicodecamp/849cd1f69ca5e9fd35475ad6fde0cb82 to your computer and use it in GitHub Desktop.
Widget buildSmallButton(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Image.network(
emailImage,
color: MyColors.white1,
width: ResponsiveWidget.isSmallScreen(context)
? 12
: ResponsiveWidget.isMediumScreen(context) ? 12 : 20,
height: ResponsiveWidget.isSmallScreen(context)
? 12
: ResponsiveWidget.isMediumScreen(context) ? 12 : 20,
)
],
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment