Variable ButtonStylesConst
ButtonStyles: {
buttonContainer: {
alignSelf: "center";
backgroundColor: undefined | ColorValue;
borderRadius: number;
elevation: number;
height: "auto";
marginHorizontal: number;
marginVertical: number;
overflow: "hidden";
paddingHorizontal: number;
paddingVertical: number;
shadowColor: undefined | ColorValue;
shadowOffset: { height: number; width: number };
shadowOpacity: number;
shadowRadius: number;
width: "100%";
};
listButton: {
alignSelf: "center";
backgroundColor: undefined
| ColorValue;
borderRadius: number;
elevation: number;
height: "auto";
marginHorizontal: number;
marginVertical: number;
overflow: "hidden";
paddingHorizontal: number;
paddingVertical: number;
shadowColor: undefined | ColorValue;
shadowOffset: { height: number; width: number };
shadowOpacity: number;
shadowRadius: number;
width: "100%";
};
} = ...
ButtonStyles object.
This object contains style definitions for various button components in the application. It includes styles for list buttons and button containers.