If this issue is for a new feature, please skip the "Bug" section and fill out the "Feature Request" section at the bottom.
Bug
Plugin Version:
Platform (e.g., Android v21):
Device/Hardware:
Expected behavior
Actual behavior
Steps to reproduce the behavior
Feature Request
Feature description:
I am using the following code in xamarin.forms page to send notification
CrossLocalNotifications.Current.Show("title", "body");
it is working fine. But in the body, if I have long text how to show?.
In a few places, I found that use the following code in the main activity of the Android project
String longText = "...";
Notification noti = new Notification.Builder(this).
.setStyle(new Notification.BigTextStyle().bigText(longText))
but NotificationBuilder class doesn't supports in xamarin.forms project.
How should I set this from xamarin.forms project?. Please help me out
If this issue is for a new feature, please skip the "Bug" section and fill out the "Feature Request" section at the bottom.
Bug
Plugin Version:
Platform (e.g., Android v21):
Device/Hardware:
Expected behavior
Actual behavior
Steps to reproduce the behavior
Feature Request
Feature description:
I am using the following code in xamarin.forms page to send notification
CrossLocalNotifications.Current.Show("title", "body");
it is working fine. But in the body, if I have long text how to show?.
In a few places, I found that use the following code in the main activity of the Android project
String longText = "...";
Notification noti = new Notification.Builder(this).
.setStyle(new Notification.BigTextStyle().bigText(longText))
but NotificationBuilder class doesn't supports in xamarin.forms project.
How should I set this from xamarin.forms project?. Please help me out