Skip to main content
Skip table of contents

List

Overview

A list is an abstract data type representing a finite number of ordered values where the same value may occur more than once.

Please refer to this for more information: https://mui.com/material-ui/react-list/.

Import

CODE
import { List } from '@mui/material';

The above source will be imported automatically after dragging and dropping the Basic Component to the UI Preview Panel.

Property

Property:

Name

Default

Description

Id-name

Placeholder: <id-name>

The Id-name of the created component.

State

State: Normal

The State of the created Component.

Margin and Padding

Size Unit: Px

The component Margin and Padding with many selectable Size Units.

Size

Size Unit: Px

The component Size includes Width and Height with many selectable Size Units.

Layout

Position: None

Size Unit: Px

The component Layout includes Position and Top - Right - Bottom - Left with many selectable Size Units.

General

Visibility: None

Opacity: 100%

The component General includes Visibility, Opacity, and Background.

Advanced Style

The component Advanced Style includes Classname and Inline Style addition.

Code Sample:

CODE
<List
          id="List1"
          sx={{':hover': {'margin': '50px','padding': '50px',
              'width': '200px','height': '200px',
              'position': 'relative','top': '25px','right': '25px','bottom': '25px','left': '25px',
              'visibility': 'visible',
              'opacity': 0.74,
              'backgroundColor': '#730000ff',},}}>
 </List>

Related Component

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.