How to create mui slider with input in react js?

Hi Friends 👋,

Welcome To aGuideHub!

To create mui slider with input in react js, you can use <input> in slider. it will create mui slider with input in React JS.

Today, I am going to show you, How to create mui slider with input in react js

Installation

Install the following packages to use mui slider in react js.

npm

npm install @mui/material @emotion/react @emotion/styled

yarn

yarn add @mui/material @emotion/react @emotion/styled

Table of contents

  • Install MUI and create a new React app.
  • Import Material-UI slider.
  • Use the slider Component

Step 1: Install MUI and create a new React app.

First you have to install the React project. You should use create-react-app command to create a new React project.

npx create-react-app my-app
cd my-app
npm start

Step 2: Import Material-UI slider.

After installing MUI, you have to import your React component. To do this, add the following line to the top of your component file.

import React, { useState } from "react";
import Slider from "@mui/material/Slider";
import Input from "@mui/material/Input";
import Stack from "@mui/material/Stack";

Step 3: Use the slider Component.

Sliders reflect a range of values along a bar, from which users may select a single value. They are ideal for adjusting settings such as volume, brightness, or applying image filters.

<Slider
    value={sliderValue}
    onChange={handleSliderChange}
    aria-labelledby="input-slider"
    min={0}
    max={100}
/>

MUI material create mui slider with input example.

The below code is an example, you need to import slider Component. Then, you can use <input>. Then it will create mui slider with input in react js.

App.js

import React, { useState } from "react";
import Slider from "@mui/material/Slider";
import Input from "@mui/material/Input";
import Stack from "@mui/material/Stack";

function SliderWithInput() {
  const [sliderValue, setSliderValue] = useState(50); // Initial value

  const handleSliderChange = (event, newValue) => {
    setSliderValue(newValue);
  };

  const handleInputChange = (event) => {
    const newValue =
      event.target.value === "" ? "" : Number(event.target.value);
    setSliderValue(newValue);
  };

  const handleBlur = () => {
    if (sliderValue < 0) {
      setSliderValue(0);
    } else if (sliderValue > 100) {
      setSliderValue(100);
    }
  };

  return (
    <div>
      <Stack direction="row" spacing={2} alignItems="center">
        <Slider
          value={sliderValue}
          onChange={handleSliderChange}
          aria-labelledby="input-slider"
          min={0}
          max={100}
        />
        <Input
          value={sliderValue}
          onChange={handleInputChange}
          onBlur={handleBlur}
          inputProps={{
         step: 1,
            min: 0,
            max: 100,
            type: "number",
            "aria-labelledby": "input-slider"
          }}
        />
      </Stack>
    </div>
  );
}

export default SliderWithInput;

In the above code example, I have used the @mui/material component and create mui slider with input in react js.

Check the output of the above code example.

React, slider, with, input

Here, we are provided code sandbox links for the above program create mui slider with input in react js. Then you can use whenever you want and do the changes as per your requirements.

Try it Yourself

All the best 👍

Premium Content

You can get all the below premium content directly in your mail when you subscribe us

Books

Interview Questions

Soon You will get CSS, JavaScript, React Js, and TypeScript So Subscribe to it.

Portfolio Template

View | Get Source Code

Cheat Sheets

Cheat Sheets Books are basically Important useful notes which we use in our day-to-day life.

Related Posts