Но я не могу понять, как превратить кнопку вызова в кнопку 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