diff --git a/assets/icons/flame.png b/assets/icons/flame.png new file mode 100644 index 0000000..931a5ee Binary files /dev/null and b/assets/icons/flame.png differ diff --git a/lib/src/views/chat_list_view.dart b/lib/src/views/chat_list_view.dart index c73006b..b8cede3 100644 --- a/lib/src/views/chat_list_view.dart +++ b/lib/src/views/chat_list_view.dart @@ -186,11 +186,15 @@ class _UserListItem extends State { style: TextStyle(fontSize: 12), ), const SizedBox(width: 3), - FaIcon( - FontAwesomeIcons.fireFlameCurved, - color: const Color.fromARGB(255, 215, 131, 58), - size: 10, + Image.asset( + "assets/icons/flame.png", + width: 9, ), + // FaIcon( + // FontAwesomeIcons.fireFlameCurved, + // color: const Color.fromARGB(255, 215, 131, 58), + // size: 10, + // ), ], ), ], diff --git a/pubspec.yaml b/pubspec.yaml index 7bf0fa9..286e7b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -68,6 +68,8 @@ flutter: assets: # Add assets from the images directory to the application. - assets/images/ + - assets/icons/ + - assets/icons/flame.png - assets/images/onboarding/01.png - assets/images/onboarding/02.png - assets/images/onboarding/03.png