ローカル通知で本文テキストが改行されないの?|BigTextStyleInformation|FlutterLocalNotifications|Android|Flutter
FlutterLocalNotifications 13.0.0 を使ってローカル通知を出してみたら、本文テキストが一行でしか表示されていなくて、困った。
改行させたい、というか、複数行の表示って、できるのかね?
複数行表示のやり方
公式 Example に掲載されていた。「BigTextStyleInformation」を使う。
---
Future<void> _showBigTextNotification() async {
const bigTextStyleInformation =
BigTextStyleInformation(
'改行したい本文テキスト\nここに設定した本文テキストは複数行で表示されるよ。',
contentTitle: 'ローカル通知を大きく開くと、ここに設定したタイトルが表示される',
);
const androidNotificationDetails =
AndroidNotificationDetails(
'big text channel id', 'big text channel name',
channelDescription: 'big text channel description',
styleInformation: bigTextStyleInformation);
await flutterLocalNotificationsPlugin.show(
id,
'ローカル通知を大きく開くと、ここに設定したタイトルは隠れる',
'ここに設定した本文テキストが表示されることはない',
NotificationDetails(android: androidNotificationDetails));
}
---参照した記事
- Flutter Local Notifications Example
- Flutter local notification body not showing all notification text (flutter_local_notifications package)
- 大きなテキスト ブロックを追加する
コメント
コメントを投稿