Answers for "flutter use svg on icon"

1

flutter use png as icon

ImageIcon(
     AssetImage("images/icon_more.png"),
     color: Color(0xFF3A5A98),
),
Posted by: Guest on October-08-2020
4

Flutter svg

final String assetName = 'assets/image.svg';
final Widget svg = SvgPicture.asset(
  assetName,
  semanticsLabel: 'Acme Logo'
);
Posted by: Guest on June-27-2020

Browse Popular Code Answers by Language