Как изменить кнопку вызова на WhatsApp на Flutter?Android

Форум для тех, кто программирует под Android
Anonymous
Как изменить кнопку вызова на WhatsApp на Flutter?

Сообщение Anonymous »

Я пишу код на основе флаттера шаблона
Но я не могу понять, как превратить кнопку вызова в кнопку WhatsApp.
Это мой код:

Код: Выделить всё

Row(
children: [
Expanded(
child: ActionButtonWidget(
buttonName: getTranslatedValue(
context, "call_to_customer"),
padding: EdgeInsetsDirectional.only(
bottom: 10, end: 5),
voidCallback: () {
launchUrlAction(
"tel://${order.userMobile}");
},
),
),
Expanded(
child: ActionButtonWidget(
buttonName: getTranslatedValue(
context, "get_customer_direction"),
padding: EdgeInsetsDirectional.only(
bottom: 10, start: 5),
voidCallback: () {
launchUrlAction(
"https://www.google.com/maps/dir/?api=1&destination=${order.customerLatitude},${order.customerLongitude}");
},
),
),
],
),
Помогите мне, пожалуйста. Спасибо.

Подробнее здесь: https://stackoverflow.com/questions/786 ... on-flutter

Вернуться в «Android»