【发布时间】:2021-11-09 18:05:59
【问题描述】:
如何在颤动的浮动操作按钮中添加whatsapp图像,因为whatsapp图标不在颤动图标列表中。告诉我一个简单的方法。
Row(
children: [
FloatingActionButton(
child: const Icon(Icons.chat),
backgroundColor: Colors.green.shade800,
onPressed: () {
String url =
"https://wa.me/+923045873730/?text=Hello";
launch(url);
},
),
],
),
【问题讨论】: