0

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.

  • Please try to refer [icon class](https://api.flutter.dev/flutter/material/Icons-class.html) ,for (https://www.fluttericon.com/)[flutter icon], (https://fonts.google.com/icons)[Google icons] – Ravindra S. Patil Jul 21 '23 at 05:26
  • checkout fontawesome implementation for the same. – Rahul Jul 21 '23 at 10:44

2 Answers2

0

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

Quang Duong
  • 161
  • 1
  • 5
0

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.

pixel
  • 577
  • 1
  • 1
  • 11