skip to Main Content

How can I make a custom Material Icon and use it in my flutter project.

I was trying to get "comment" icon that is used in Instagram, but I couldn’t get the exact one.

Is there any tool where I can make icons that can be used in my project.

2

Answers


  1. You can use flutter_svg to custom your svg icon https://pub.dev/packages/flutter_svg

    Login or Signup to reply.
  2. Here’s the kind of icon your are looking for, for free: Icon. You can just download it’s png and use it with Image.asset widget.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search