imágenes con ese botón, la interfaz de usuario de Applicationsmobile Material para React tiene este componente disponible para nosotros y es muy fácil de integrar. Podemos usar el componente MobileStepper en ReactJS usando el siguiente enfoque.
Creación de la aplicación React e instalación del módulo:
Paso 1: Cree una aplicación React usando el siguiente comando:
npx create-react-app foldername
Paso 2: después de crear la carpeta de su proyecto, es decir , el nombre de la carpeta , acceda a ella con el siguiente comando:
cd foldername
Paso 3: después de crear la aplicación ReactJS, instale los módulos material-ui usando el siguiente comando:
npm install @material-ui/core npm install @material-ui/icons
Estructura del proyecto: Tendrá el siguiente aspecto.
App.js: ahora escriba el siguiente código en el archivo App.js. Aquí, la aplicación es nuestro componente predeterminado donde hemos escrito nuestro código.
Javascript
import React from "react"; import Button from "@material-ui/core/Button"; import MobileStepper from "@material-ui/core/MobileStepper"; import Paper from "@material-ui/core/Paper"; import KeyboardArrowRight from "@material-ui/icons/KeyboardArrowRight"; import Typography from "@material-ui/core/Typography"; import { useTheme } from "@material-ui/core/styles"; import KeyboardArrowLeft from "@material-ui/icons/KeyboardArrowLeft"; const MyCollection = [ { label: "First Picture", imgPath: "https://media.geeksforgeeks.org/wp-content/uploads/20210208000010/1.png", }, { label: "Second Picture", imgPath: "https://media.geeksforgeeks.org/wp-content/uploads/20210208000009/2.png", }, { label: "Third Picture", imgPath: "https://media.geeksforgeeks.org/wp-content/uploads/20210208000008/3.png", }, ]; const App = () => { const CollectionSize = MyCollection.length; const theme = useTheme(); const [index, setActiveStep] = React.useState(0); const goToNextPicture = () => { setActiveStep((prevActiveStep) => prevActiveStep + 1); }; return ( <div style={{ marginLeft: "40%", }} > <h2>How to Create Image Slider in ReactJS?</h2> <div style={{ maxWidth: 400, flexGrow: 1, }} > <Paper square elevation={0} style={{ height: 50, display: "flex", paddingLeft: theme.spacing(4), backgroundColor: theme.palette.background.default, alignItems: "center", }} > <Typography>{MyCollection[index].label}</Typography> </Paper> <img src={MyCollection[index].imgPath} style={{ height: 255, width: "100%", maxWidth: 400, display: "block", overflow: "hidden", }} alt={MyCollection[index].label} /> <MobileStepper variant="text" position="static" index={index} steps={CollectionSize} nextButton={ <Button size="small" onClick={goToNextPicture} disabled={index === CollectionSize - 1} > Next {theme.direction !== "rtl" ? ( <KeyboardArrowRight /> ) : ( <KeyboardArrowLeft /> )} </Button> } /> </div> </div> ); }; export default App;
Paso para ejecutar la aplicación: ejecute la aplicación utilizando el siguiente comando desde el directorio raíz del proyecto:
npm start
Salida: Ahora abra su navegador y vaya a http://localhost:3000/ , verá la siguiente salida.
Publicación traducida automáticamente
Artículo escrito por gouravhammad y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA