react-native-multistep
Version:
Create multi-step forms with ease in your React Native app
82 lines • 1.85 kB
TypeScript
export declare const styles: {
container: {
flex: number;
backgroundColor: string;
};
indicatorContainer: {
flexDirection: "row";
justifyContent: "center";
};
stepContainer: {
flexDirection: "row";
alignItems: "center";
};
stepIndicator: {
width: number;
height: number;
borderRadius: number;
borderWidth: number;
borderColor: string;
backgroundColor: string;
justifyContent: "center";
alignItems: "center";
};
activeStep: {
borderColor: string;
backgroundColor: string;
};
stepText: {
color: string;
fontWeight: "bold";
fontSize: number;
};
activeStepText: {
color: string;
};
line: {
width: number;
height: number;
backgroundColor: string;
marginHorizontal: number;
};
activeLine: {
backgroundColor: string;
};
contentContainer: {
flexGrow: number;
justifyContent: "center";
alignItems: "center";
marginTop: number;
paddingTop: number;
paddingBottom: number;
};
fixedFooter: {
position: "absolute";
bottom: number;
width: "100%";
flexDirection: "row";
justifyContent: "center";
backgroundColor: string;
};
button: {
paddingVertical: number;
paddingHorizontal: number;
borderRadius: number;
};
backButton: {
backgroundColor: string;
marginRight: number;
};
backButtonText: {
color: string;
fontWeight: "bold";
};
nextButton: {
backgroundColor: string;
};
nextButtonText: {
color: string;
fontWeight: "bold";
};
};
//# sourceMappingURL=styles.d.ts.map