Skip to content

Instantly share code, notes, and snippets.

@dpossas
Created December 15, 2022 19:41
Show Gist options
  • Save dpossas/b41cecb2afb9f9531c050c4a6c05cc96 to your computer and use it in GitHub Desktop.
Save dpossas/b41cecb2afb9f9531c050c4a6c05cc96 to your computer and use it in GitHub Desktop.
app_icons.dart
IconButton(
padding: EdgeInsets.all(0),
onPressed: onTap as void Function()?,
icon: appIconType == AppIconType.svg
? SvgPicture.asset(
icon ?? AppIcons.logoHeader,
fit: fit ?? BoxFit.none,
color: color,
width: width,
height: height,
)
: Image.asset(
icon!,
filterQuality: FilterQuality.high,
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment