You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In iOS, when we start + connect a call, you can see there is call active by the green dot at the top. in addition, when locking the device, youll see the callkit UI showing call in progress.
however, with android, there is no UI. it seems as this package only supports ringing UI (lock screen and unlocked), when answering the call, it does not show and UI on the home screen or lock screen.
is this a bug or is this a feature request? is it possible to show UI when call is connected? or is this something i need to integrate with android telecom framework using ConnectionService
i want to have something like this (see top of phone, 0:06 with phone icon):
running the above in iOS shows system callkit but on android it does nothing. in fact, inspecting these methods shows that nothing is done.
/// Start an Outgoing call.
/// On iOS, using Callkit(create a history into the Phone app).
/// On Android, Nothing(only callback event listener).
static Future startCall(CallKitParams params) async {
await _channel.invokeMethod("startCall", params.toJson());
}
/// Set call has been connected successfully.
/// On iOS, using Callkit(update a history into the Phone app).
/// On Android, Nothing(only callback event listener).
static Future setCallConnected(String id) async {
await _channel.invokeMethod("callConnected", {'id': id});
}
The text was updated successfully, but these errors were encountered:
In iOS, when we start + connect a call, you can see there is call active by the green dot at the top. in addition, when locking the device, youll see the callkit UI showing call in progress.
however, with android, there is no UI. it seems as this package only supports ringing UI (lock screen and unlocked), when answering the call, it does not show and UI on the home screen or lock screen.
is this a bug or is this a feature request? is it possible to show UI when call is connected? or is this something i need to integrate with android telecom framework using ConnectionService
i want to have something like this (see top of phone, 0:06 with phone icon):

and this lock UI:

these are taking from using whatsapp.
code:
running the above in iOS shows system callkit but on android it does nothing. in fact, inspecting these methods shows that nothing is done.
The text was updated successfully, but these errors were encountered: