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
43 lines (42 loc) • 1.93 kB
TypeScript
import { AvatarStyleInterface, BaseStyle, BaseStyleInterface, BorderStyleInterface, FontStyleInterface, ListItemStyleInterface } from "../shared";
import { StatusIndicatorStyleInterface } from "../shared/views/CometChatStatusIndicator/StatusIndicatorStyle";
export interface GroupMembersStyleInterface extends BaseStyleInterface {
titleFont?: FontStyleInterface;
titleColor?: string;
backIconTint?: string;
searchBorder?: BorderStyleInterface;
searchBorderRadius?: number;
searchBackgroundColor?: string;
searchTextFont?: FontStyleInterface;
searchTextColor?: string;
searchIconTint?: string;
onlineStatusColor?: string;
separatorColor?: string;
loadingIconTint?: string;
emptyTextColor?: string;
emptyTextFont?: FontStyleInterface;
errorTextColor?: string;
errorTextFont?: FontStyleInterface;
}
export declare class GroupMembersStyle extends BaseStyle {
titleFont: FontStyleInterface;
titleColor: string;
backIconTint: string;
searchBorder: BorderStyleInterface;
searchBorderRadius: number;
searchBackgroundColor: string;
searchTextFont: FontStyleInterface;
searchTextColor: string;
searchIconTint: string;
onlineStatusColor: string;
separatorColor: string;
loadingIconTint: string;
emptyTextColor: string;
emptyTextFont: FontStyleInterface;
errorTextColor: string;
errorTextFont: FontStyleInterface;
avatarStyle: AvatarStyleInterface;
listItemStyle: ListItemStyleInterface;
statusIndicatorStyle: StatusIndicatorStyleInterface;
constructor({ width, height, backgroundColor, border, borderRadius, titleFont, titleColor, backIconTint, searchBorder, searchBorderRadius, searchBackgroundColor, searchTextFont, searchTextColor, searchIconTint, onlineStatusColor, separatorColor, loadingIconTint, emptyTextColor, emptyTextFont, errorTextColor, errorTextFont, }: GroupMembersStyleInterface);
}