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
62 lines (61 loc) • 1.46 kB
TypeScript
export declare const Style: {
container: {
flex: number;
padding: number;
backgroundColor: string;
justifyContent: "center";
};
viewStyle: {
borderRadius: number;
paddingStart: number;
paddingTop: number;
paddingEnd: number;
paddingBottom: number;
shadowColor: string;
elevation: number;
opacity: number;
};
titleTextStyle: {
opacity: number;
fontSize: number;
fontWeight: "500";
letterSpacing: number;
};
messageTextStyle: {
opacity: number;
fontSize: number;
fontWeight: "400";
fontStyle: "normal";
textAlign: "left";
letterSpacing: number;
};
buttonViewStyle: {
justifyContent: "flex-end";
flexDirection: "row";
alignItems: "flex-end";
};
cancelButtonStyle: {
padding: number;
};
confirmButtonStyle: {
padding: number;
};
confirmButtonTextStyle: {
opacity: number;
fontSize: number;
fontWeight: "500";
fontStyle: "normal";
letterSpacing: number;
textAlign: "right";
lineHeight: number;
};
cancelButtonTextStyle: {
opacity: number;
fontSize: number;
fontWeight: "500";
fontStyle: "normal";
letterSpacing: number;
textAlign: "right";
lineHeight: number;
};
};