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
53 lines (52 loc) • 1.22 kB
TypeScript
export declare const Style: {
nameStyle: {
fontSize: number;
fontWeight: "500";
color: string;
};
newMessageIndicatorStyle: {
position: "absolute";
zIndex: number;
padding: number;
paddingStart: number;
paddingEnd: number;
flexDirection: "row";
backgroundColor: string;
borderRadius: number;
alignSelf: "center";
marginTop: number;
};
newMessageIndicatorImage: {
tintColor: string;
height: number;
width: number;
alignSelf: "center";
marginLeft: number;
};
newMessageIndicatorText: {
color: string;
};
msgContainerStyle: {
flex: number;
overflow: "hidden";
width: string;
justifyContent: "center";
alignItems: "center";
};
msgTxtStyle: {
justifyContent: "center";
alignItems: "center";
alignSelf: "center";
textAlign: "center";
width: string;
color: string;
};
msgImgStyle: {
tintColor: string;
};
stickyHeaderFooterStyle: {
position: "absolute";
zIndex: number;
width: string;
};
};