Flutter - How to change the background color of awesome_notification?

2k views Asked by At

I am using the awesome_notification plugin to show scheduled notifications in flutter. Everything works fine, but the notification is so simple-looking. It has a white background and black text. I wonder if there is a way to change the notification's background color.

1

There are 1 answers

0
Anandh Krishnan On
   NotificationChannel(
              channelGroupKey: 'basic_tests',
              channelKey: 'basic_channel',
              channelName: 'Basic notifications',
              channelDescription: 'Notification channel for basic tests',
              defaultColor: Color(0xFF9D50DD),
              ledColor: Colors.white,
              importance: NotificationImportance.High
          ),

If you need more clarification refer the link