first commit
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
import React from "react";
|
||||
import Card from "@mui/material/Card";
|
||||
import { Typography } from "@mui/material";
|
||||
import Box from '@mui/material/Box';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import MobileStepper from '@mui/material/MobileStepper';
|
||||
import Paper from '@mui/material/Paper';
|
||||
import Button from '@mui/material/Button';
|
||||
import KeyboardArrowLeft from '@mui/icons-material/KeyboardArrowLeft';
|
||||
import KeyboardArrowRight from '@mui/icons-material/KeyboardArrowRight';
|
||||
|
||||
const steps = [
|
||||
{
|
||||
label: 'Select campaign settings',
|
||||
description: `For each ad campaign that you create, you can control how much
|
||||
you're willing to spend on clicks and conversions, which networks
|
||||
and geographical locations you want your ads to show on, and more.`,
|
||||
},
|
||||
{
|
||||
label: 'Create an ad group',
|
||||
description:
|
||||
'An ad group contains one or more ads which target a shared set of keywords.',
|
||||
},
|
||||
{
|
||||
label: 'Create an ad',
|
||||
description: `Try out different ad text to see what brings in the most customers,
|
||||
and learn how to enhance your ads using features like ad extensions.
|
||||
If you run into any problems with your ads, find out how to tell if
|
||||
they're running and how to resolve approval issues.`,
|
||||
},
|
||||
];
|
||||
|
||||
export default function MobileStepperText() {
|
||||
const theme = useTheme();
|
||||
const [activeStep, setActiveStep] = React.useState(0);
|
||||
const maxSteps = steps.length;
|
||||
|
||||
const handleNext = () => {
|
||||
setActiveStep((prevActiveStep) => prevActiveStep + 1);
|
||||
};
|
||||
|
||||
const handleBack = () => {
|
||||
setActiveStep((prevActiveStep) => prevActiveStep - 1);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<Card
|
||||
sx={{
|
||||
boxShadow: "none",
|
||||
borderRadius: "10px",
|
||||
p: "25px",
|
||||
mb: "15px",
|
||||
}}
|
||||
>
|
||||
<Typography
|
||||
as="h3"
|
||||
sx={{
|
||||
fontSize: 18,
|
||||
fontWeight: 500,
|
||||
mb: '10px'
|
||||
}}
|
||||
>
|
||||
Mobile Stepper
|
||||
</Typography>
|
||||
|
||||
<Box sx={{ maxWidth: 400, flexGrow: 1 }} className="mobile-stepper">
|
||||
<Paper
|
||||
square
|
||||
elevation={0}
|
||||
sx={{
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
height: 50,
|
||||
pl: 2,
|
||||
bgcolor: 'background.default',
|
||||
}}
|
||||
className="bg-black"
|
||||
>
|
||||
<Typography>{steps[activeStep].label}</Typography>
|
||||
</Paper>
|
||||
|
||||
<Box sx={{ height: 255, maxWidth: 400, width: '100%', p: 2 }}>
|
||||
{steps[activeStep].description}
|
||||
</Box>
|
||||
|
||||
<MobileStepper
|
||||
variant="text"
|
||||
steps={maxSteps}
|
||||
position="static"
|
||||
activeStep={activeStep}
|
||||
nextButton={
|
||||
<Button
|
||||
size="small"
|
||||
onClick={handleNext}
|
||||
disabled={activeStep === maxSteps - 1}
|
||||
>
|
||||
Next
|
||||
{theme.direction === 'rtl' ? (
|
||||
<KeyboardArrowLeft />
|
||||
) : (
|
||||
<KeyboardArrowRight />
|
||||
)}
|
||||
</Button>
|
||||
}
|
||||
backButton={
|
||||
<Button size="small" onClick={handleBack} disabled={activeStep === 0}>
|
||||
{theme.direction === 'rtl' ? (
|
||||
<KeyboardArrowRight />
|
||||
) : (
|
||||
<KeyboardArrowLeft />
|
||||
)}
|
||||
Back
|
||||
</Button>
|
||||
}
|
||||
className="bg-black"
|
||||
/>
|
||||
</Box>
|
||||
</Card>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user