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
39 lines (38 loc) • 1.42 kB
TypeScript
import { BaseStyle, BaseStyleInterface, FontStyleInterface } from "../shared";
export interface ConversationsStyleInterface extends BaseStyleInterface {
titleFont?: FontStyleInterface;
titleColor?: string;
backIconTint?: string;
onlineStatusColor?: string;
separatorColor?: string;
loadingIconTint?: string;
emptyTextColor?: string;
emptyTextFont?: FontStyleInterface;
errorTextColor?: string;
errorTextFont?: FontStyleInterface;
lastMessageTextColor?: string;
lastMessageTextFont?: FontStyleInterface;
typingIndictorTextColor?: string;
typingIndictorTextFont?: FontStyleInterface;
threadIndicatorTextFont?: FontStyleInterface;
threadIndicatorTextColor?: string;
}
export declare class ConversationsStyle extends BaseStyle {
titleFont?: FontStyleInterface;
titleColor?: string;
backIconTint?: string;
onlineStatusColor?: string;
separatorColor?: string;
loadingIconTint?: string;
emptyTextColor?: string;
emptyTextFont?: FontStyleInterface;
errorTextColor?: string;
errorTextFont?: FontStyleInterface;
lastMessageTextColor?: string;
lastMessageTextFont?: FontStyleInterface;
typingIndictorTextColor?: string;
typingIndictorTextFont?: FontStyleInterface;
threadIndicatorTextFont?: FontStyleInterface;
threadIndicatorTextColor?: string;
constructor(props: ConversationsStyleInterface);
}