Created
February 22, 2021 10:40
-
-
Save tayormi/2a787f2dc989f0bf4bd51012c1a1ac80 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
| 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