-
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
1719319109
Anonymous
Я пишу код на основе флаттера шаблона
Но я не могу понять, как превратить кнопку вызова в кнопку WhatsApp.
Это мой код:
[code]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}");
},
),
),
],
),
[/code]
Помогите мне, пожалуйста. Спасибо.
Подробнее здесь: [url]https://stackoverflow.com/questions/78667296/how-change-button-call-become-whatsapp-on-flutter[/url]