Skip to main content

Call Log Participants

Overview

CometChatCallLogParticipants is a Widget that shows a separate widget that displays comprehensive information about Call. This will enable users to easily access details such as the call participants, and call details for a more informed communication experience.

Image

The CometChatCallLogParticipants widget is composed of the following BaseWidgets:

WidgetsDescription
CometChatListBaseCometChatListBase is a container widget featuring a title, customizable background options, and a dedicated list widget for seamless integration within your application's interface.
CometChatListItemThis widget displays data retrieved from a CallLog object on a card, presenting a title and subtitle.

Usage

Integration

CometChatCallLogParticipants is a widget that seamlessly integrates into your application. To present the participants of a call, you can instantiate the CometChatCallLogParticipants instance and provide the list of participants using its setter function. This allows for easy customization and efficient display of call participant details within your application's interface.

You can launch CometChatCallLogParticipants directly using Navigator.push, or you can define it as a widget within the build method of your State class.

1. Using Navigator to Launch CometChatCallLogParticipants
Navigator.push(context, MaterialPageRoute(builder: (context) => CometChatCallLogParticipants(callLog: callLogObject))); // CallLog object is required to launch the CometChatCallLogParticipants widget.
2. Embedding CometChatCallLogParticipants as a Widget in the build Method
import 'package:cometchat_calls_uikit/cometchat_calls_uikit.dart';
import 'package:flutter/material.dart';

class CallLogParticipantExample extends StatefulWidget {
const CallLogParticipantExample({super.key});


State<CallLogParticipantExample> createState() => _CallLogParticipantExampleState();
}

class _CallLogParticipantExampleState extends State<CallLogParticipantExample> {

Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: CometChatCallLogParticipants(
callLog: callLogObject,
) // CallLog object is required to launch the CometChatCallLogDetails widget.
),
);
}
}

Actions

Actions dictate how a widget functions. They are divided into two types: Predefined and User-defined. You can override either type, allowing you to tailor the behavior of the widget to fit your specific needs.

1. onBack

You can customize this behavior by using the provided code snippet to override the onBack and improve error handling.

CometChatCallLogParticipants(
callLog: callLogObject,
onBack: () {
// TODO("Not yet implemented")
},
)

2. onError

You can customize this behavior by using the provided code snippet to override the onError and improve error handling.

CometChatCallLogParticipants(
callLog: callLogObject,
onError: (e) {
// TODO("Not yet implemented")
},
)

Filters

Filters allow you to customize the data displayed in a list within a Widget. You can filter the list based on your specific criteria, allowing for a more customized. Filters can be applied using RequestBuilders of ChatSDK.

The CometChatCallLogParticipants widget does not have any exposed filters.


Events

Events are emitted by a Widget. By using event you can extend existing functionality. Being global events, they can be applied in Multiple Locations and are capable of being Added or Removed.

The CometChatCallLogParticipants widget does not have any exposed events.


Customization

To fit your app's design requirements, you can customize the appearance of the conversation widget. We provide exposed methods that allow you to modify the experience and behavior according to your specific needs.

Style

Using Style you can customize the look and feel of the widget in your app, These parameters typically control elements such as the color, size, shape, and fonts used within the widget.

1. CallLogParticipants Style

You can customize the appearance of the CallLogParticipantsStyle Widget by applying the CallLogParticipantsStyle to it using the following code snippet.

CometChatCallLogParticipants(
callLog: callLogObject,
participantsStyle: CallLogParticipantsStyle(
background: Color(0xFFE4EBF5),
titleStyle: const TextStyle(color: Colors.red, fontFamily: "PlaywritePL"),
borderRadius: 10,
border: Border.all(color: Colors.red, width: 2),
),
)
Image

List of properties exposed by CallLogParticipantsStyle

PropertyDescriptionCode
widthThe width of the call log participants style.double? width
heightThe height of the call log participants style.double? height
backgroundThe background color of the call log participants style.Color? background
borderThe border of the call log participants style.BoxBorder? border
borderRadiusThe border radius of the call log participants style.double? borderRadius
gradientThe gradient of the call log participants style.Gradient? gradient
titleStyleThe text style for the title.TextStyle? titleStyle
subTitleStyleThe text style for the subtitle.TextStyle? subTitleStyle
emptyTextStyleThe text style for the empty state.TextStyle? emptyTextStyle
backIconTintThe tint color for the back icon.Color? backIconTint
tailTitleStyleThe text style for the tail title.TextStyle? tailTitleStyle
nameTextStyleThe text style for the name.TextStyle? nameTextStyle

2. Avatar Style

To apply customized styles to the Avatar widget in the CometChatCallLogParticipants Widget, you can use the following code snippet. For more information, visit Avatar Styles.

CometChatCallLogParticipants(
callLog: callLogObject,
avatarStyle: AvatarStyle(
background: Color(0xFFE4EBF5),
borderRadius: 10,
border: Border.all(color: Colors.red, width: 2),
),
)

3. ListItem Style

To apply customized styles to the List Item widget in the CometChatCallLogParticipants widget, You can use the following code snippet. For further insights on List Item Styles refer

CometChatCallLogParticipants(
callLog: callLogObject,
listItemStyle: ListItemStyle(
background: Color(0xFFE4EBF5),
borderRadius: 20,
border: Border.all(width: 2),
margin: const EdgeInsets.only(top: 10),
padding: const EdgeInsets.only(left: 10)
),
)

Functionality

These are a set of small functional customizations that allow you to fine-tune the overall experience of the widget. With these, you can change text, set custom icons, and toggle the visibility of UI elements.

CometChatCallLogParticipants(
callLog: callLogObject,
title: "Your Title",
backButton: Image.asset(
"assets/img/back.png",
width: 30,
height: 30,
),
hideSeparator: false
)
Image

Below is a list of customizations along with corresponding code snippets

PropertyDescriptionCode
titleThe title of the call log participants.String? title
backButtonThe custom back button widget.Widget? backButton
showBackButtonWhether to show the back button.bool? showBackButton
emptyStateTextThe text to show when there are no participants.String? emptyStateText
themeThe theme of the call log participants.Theme? theme
datePatternThe pattern for formatting the date.String? datePattern
hideSeparatorWhether to hide the separator.bool hideSeparator

Advanced

For advanced-level customization, you can set custom widgets to the widget. This lets you tailor each aspect of the widget to fit your exact needs and application aesthetics. You can create and define your widgets, layouts, and UI elements and then incorporate those into the widget.

ListItemView

With this function, you can assign a custom ListItem widget to the CometChatCallLogParticipants Widget.

CometChatCallLogParticipants(
callLog: callLogObject,
listItemView: (Participants participants, BuildContext context) {
return Container(
margin: const EdgeInsets.all(10),
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
border: Border.all(color: Color(0xFF6851D6), width: 1), // Example border color
borderRadius: BorderRadius.circular(8.0),
color: Color(0xFFEEEEEE)
),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(participants.name!),
const Spacer(),
ClipOval(
child: Image.network(
participants.avatar!,
width: 40.0,
height: 40.0,
fit: BoxFit.cover,
errorBuilder: (context, error, stackTrace) {
return const Icon(
Icons.person,
size: 40.0,
);
},
),
),
const SizedBox(width: 20),
],
),
);
},
)
Image

SubtitleView

You can customize the subtitle widget for each conversation item to meet your requirements

CometChatCallLogParticipants(
callLog: callLogObject,
subTitleView: (BuildContext context, Participants participants) {
return Row(
children: [
InkWell(
onTap: () {
// TODO("Not yet implemented")
},
child: const Icon(Icons.call, color: Color(0xFF6851D6), size: 25)
),
const SizedBox(width: 10),
InkWell(
onTap: () {
// TODO("Not yet implemented")
},
child: const Icon(Icons.video_call, color: Color(0xFF6851D6), size: 25)
),
],
);
},
)
Image

TailView

Used to generate a custom trailing widget for the CometChatCallLogParticipants widget. You can add a Tail widget using the following method.

CometChatCallLogParticipants(
callLog: callLogObject,
tailView: (BuildContext context, Participants participants) {
return SizedBox(
width: 100,
child: Row(
children: [
InkWell(
onTap: () {
// TODO("Not yet implemented")
},
child: const Icon(Icons.call, color: Color(0xFF6851D6), size: 25)
),
const SizedBox(width: 10),
InkWell(
onTap: () {
// TODO("Not yet implemented")
},
child: const Icon(Icons.video_call, color: Color(0xFF6851D6), size: 25)
),
],
),
);
},
)
Image

EmptyStateView

You can set a custom EmptyStateView using emptyStateView to match the empty UI of your app.

CometChatCallLogParticipants(
callLog: callLogObject,
emptyStateView: (context) {
return SizedBox(
width: MediaQuery.of(context).size.width,
child: const Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Spacer(),
Icon(Icons.sms_failed_outlined, color: Colors.red, size: 100,),
SizedBox(height: 20,),
Text("Your Custom Message"),
Spacer(),
],
)
),
);
},
)
Image