Skip to content

Instantly share code, notes, and snippets.

@tayormi
Created February 22, 2021 10:40
Show Gist options
  • Select an option

  • Save tayormi/2a787f2dc989f0bf4bd51012c1a1ac80 to your computer and use it in GitHub Desktop.

Select an option

Save tayormi/2a787f2dc989f0bf4bd51012c1a1ac80 to your computer and use it in GitHub Desktop.
extension StringExtension on String {
String get svg => 'assets/images/svg/$this.svg';
String get png => 'assets/images/png/$this.png';
}
// Then you can do this
SvgPicture.asset(
'back'.svg,
height: 16,
width: 16,
color: white
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment