我使用ionic 1和firebase创建了一个移动应用程序。现在,我想创建一个通知类别,例如channel,用户可以在其中选择所需的通知。
我在这里共享了我使用过的推送通知代码,该代码正在运行,我想创建通知类别,以上代码正在为我的移动应用程序推送通知。
现在我需要一个帮助,该如何在我的移动应用程序中创建频道通知类别
return ListView(
children: <Widget>[
InkWell(
onTap: (){
// here you add the function intended to handle ListTile tap event.
},
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
child: ListTile(
onTap: null,
leading: IconButton(
icon: Icon(
Icons.video_library,
color: Colors.yellow,
),
onPressed: (){},
splashColor: Colors.cyan,
),
title: Text('Item'),
),
),
],
);