react-native-chating-ui-kit
Version:
CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly
31 lines • 1.15 kB
JavaScript
export class CallDetailsConfiguration {
showCloseButton;
closeButtonIconImage;
hideProfile;
SubtitleView;
CustomProfileView;
data;
disableUsersPresence;
onError;
onBack;
avatarStyle;
statusIndicatorStyle;
listItemStyle;
callDetailsStyle;
constructor({ showCloseButton, closeButtonIconImage, hideProfile, SubtitleView, CustomProfileView, data, disableUsersPresence, onError, onBack, avatarStyle, statusIndicatorStyle, listItemStyle, callDetailsStyle, }) {
this.showCloseButton = showCloseButton;
this.closeButtonIconImage = closeButtonIconImage;
this.hideProfile = hideProfile;
this.SubtitleView = SubtitleView;
this.CustomProfileView = CustomProfileView;
this.data = data;
this.disableUsersPresence = disableUsersPresence;
this.onError = onError;
this.onBack = onBack;
this.avatarStyle = avatarStyle;
this.statusIndicatorStyle = statusIndicatorStyle;
this.listItemStyle = listItemStyle;
this.callDetailsStyle = callDetailsStyle;
}
}
//# sourceMappingURL=CallDetailsConfiguration.js.map