Material-UI 使用反饋

小蝸牛發表於2021-12-03

最近工作中需要開發手機端H5頁面,沒有使用熟悉的 React + Antd-mobile, React + Taro UI,Vue + uView ,而是使用了 React + Material-UI做了一次全新的嘗試。而且正好最近React-router/React-router-dom 強行用 hooks模式 迭代了一個大版本@6;

目的: 看膩了antd的中臺樣式,體驗一下Material的【暗黑模式】以及可配置的【調色盤】。
image.pngimage.png

React 相關版本資訊:

  "react": "^17.0.2",
  "react-dom": "^17.0.2",
  "react-redux": "^7.2.6",
  "react-router": "^6.0.2",
  "react-router-dom": "^6.0.2",

image.png
Material-UI 相關版本資訊:

  "@emotion/react": "^11.6.0",
  "@emotion/styled": "^11.6.0",
  "@material-ui/core": "^5.0.0-beta.5",
  "@material-ui/styles": "^4.11.4",
  "@mui/icons-material": "^5.1.1",
  "@mui/lab": "^5.0.0-alpha.56",
  "@mui/material": "^5.1.1",

image.png

使用元件有:
Typography Button Radio Select Switch TextField Badge List Table Tooltip Alert Dialog Progress Accordion Card Paper Menu Pagination Grid Modal Date Range Picker...

遇到的問題:

1、需要定義 首選主題primary、次級主題secondary等顏色搭配配置
2、元件沒有漢化,需要自己漢化【例如:日曆等】
3、元件需要進行二次封裝,使其更符合國人審美

接入 Material-UI

Material-UI官網
注意:元件建議單元件引入,示例:

    import { Button, Tabs, Modal, Box} from '@material-ui/core/index';
    與
    import Button from '@material-ui/core/Button';
    區別
    上面的引入方式,打包後的包體積是下面的包10倍左右...

主題的配置

在Color 顏色 中簡單選取了幾個顏色搭配為
註釋:primary的 dark為800色值、main為600色值、light為400色值; secondary的 dark為700色值、main為500色值、light為200色值;看個人審美,可以使用不同色調進行搭配。

themeConfig.js 檔案

const theme = {
    pink: {
        palette: {
            primary: {
                light: '#ec407a',
                main: '#d81b60',
                dark: '#ad1457',
                contrastText: '#000',
            },
            secondary: {
                light: '#f48fb1',
                main: '#e91e63',
                dark: '#c2185b',
                contrastText: '#000',
            },
        },
    },
    purple: {
        palette: {
            primary: {
                light: '#ab47bc',
                main: '#8e24aa',
                dark: '#6a1b9a',
            },
            secondary: {
                light: '#ce93d8',
                main: '#9c27b0',
                dark: '#7b1fa2',
            },
        },
    },
    deepPurple: {
        palette: {
            primary: {
                light: '#7e57c2',
                main: '#5e35b1',
                dark: '#4527a0',
                contrastText: '#000',
            },
            secondary: {
                light: '#b39ddb',
                main: '#673ab7',
                dark: '#512da8',
                contrastText: '#000',
            },
        },
    },
    blue: {
        palette: {
            primary: {
                light: '#42a5f5',
                main: '#1e88e5',
                dark: '#1565c0',
                contrastText: '#000',
            },
            secondary: {
                light: '#90caf9',
                main: '#2196f3',
                dark: '#1976d2',
                contrastText: '#000',
            },
        },
    },
    teal: {
        palette: {
            primary: {
                light: '#26a69a',
                main: '#00897b',
                dark: '#00695c',
                contrastText: '#000',
            },
            secondary: {
                light: '#80cbc4',
                main: '#009688',
                dark: '#00796b',
                contrastText: '#000',
            },
        },
    },
    green: {
        palette: {
            primary: {
                light: '#66bb6a',
                main: '#43a047',
                dark: '#2e7d32',
                contrastText: '#000',
            },
            secondary: {
                light: '#a5d6a7',
                main: '#4caf50',
                dark: '#388e3c',
                contrastText: '#000',
            },
        },
    },
    amber: {
        palette: {
            primary: {
                light: '#ffca28',
                main: '#ffb300',
                dark: '#ff8f00',
                contrastText: '#000',
            },
            secondary: {
                light: '#ffe082',
                main: '#ffc107',
                dark: '#ffa000',
                contrastText: '#000',
            },
        },
    },
    blueGrey: {
        palette: {
            primary: {
                light: '#ECEFF1',
                main: '#90A4AE',
                dark: '#455A64',
                contrastText: '#000',
            },
            secondary: {
                light: '#E0E0E0',
                main: '#757575',
                dark: '#424242',
                contrastText: '#000',
            },
        },
    },
    cyan: {
        palette: {
            primary: {
                light: '#E0F7FA',
                main: '#00BCD4',
                dark: '#00838F',
                contrastText: '#000',
            },
            secondary: {
                light: '#E1F5FE',
                main: '#039BE5',
                dark: '#01579B',
                contrastText: '#000',
            },
        },
    },
};
export default theme;

image.png

全域性的基礎CSS樣式配置

import themePalette from './themePaletteMode';
import { colorToRgba } from './../../utils/colorToRgba';
const applicationTheme = (color, mode, direction) => ({
    direction,
    palette: {
        type: mode,
        primary: themePalette(color, mode).palette.primary,
        secondary: themePalette(color, mode).palette.secondary,
        action: {
            hover: mode === 'dark' ? 'rgba(80,80,80, 0.9)' : 'rgba(80,80,80, 0.05)',
            hoverOpacity: 0.05,
        },
    },
    typography: {
        useNextVariants: true,
        fontFamily: ['Open Sans', 'sans-serif'].join(','),
        title: {
            fontWeight: 600,
        },
        body2: {
            fontWeight: 500,
        },
        fontWeightMedium: 600,
    },
    shade: {
        light: '0 10px 15px -5px rgba(62, 57, 107, .07)',
    },
    glow: {
        light: `0 2px 20px -5px ${themePalette(color, mode).palette.primary.main}`,
        medium: `0 2px 40px -5px ${themePalette(color, mode).palette.primary.main}`,
        dark: `0 2px 40px 0px ${themePalette(color, mode).palette.primary.main}`,
    },
    rounded: {
        small: '8px',
        medium: '12px',
        big: '20px',
    },
    shadows:
        mode === 'dark'
            ? [
                  'none',
                  `0px 1px 3px 0px rgba(100,100,100, 0.6),0px 1px 1px 0px rgba(100,100,100, 0.4),0px 2px 1px -1px rgba(100,100,100, 0.2)`,
                  '0px 1px 5px 0px rgba(100,100,100, 0.6),0px 2px 2px 0px rgba(100,100,100, 0.4),0px 3px 1px -2px rgba(100,100,100, 0.2)',
                  '0px 1px 8px 0px rgba(100,100,100, 0.6),0px 3px 4px 0px rgba(100,100,100, 0.4),0px 3px 3px -2px rgba(100,100,100, 0.2)',
                  '0px 2px 4px -1px rgba(100,100,100, 0.6),0px 4px 5px 0px rgba(100,100,100, 0.4),0px 1px 10px 0px rgba(100,100,100, 0.2)',
                  '0px 3px 5px -1px rgba(100,100,100, 0.6),0px 5px 8px 0px rgba(100,100,100, 0.4),0px 1px 14px 0px rgba(100,100,100, 0.2)',
                  '0px 3px 5px -1px rgba(100,100,100, 0.6),0px 6px 10px 0px rgba(100,100,100, 0.4),0px 1px 18px 0px rgba(100,100,100, 0.2)',
                  '0px 4px 5px -2px rgba(100,100,100, 0.6),0px 7px 10px 1px rgba(100,100,100, 0.4),0px 2px 16px 1px rgba(100,100,100, 0.2)',
                  '0px 5px 5px -3px rgba(100,100,100, 0.6),0px 8px 10px 1px rgba(100,100,100, 0.4),0px 3px 14px 2px rgba(100,100,100, 0.2)',
                  '0px 5px 6px -3px rgba(100,100,100, 0.6),0px 9px 12px 1px rgba(100,100,100, 0.4),0px 3px 16px 2px rgba(100,100,100, 0.2)',
                  '0px 6px 6px -3px rgba(100,100,100, 0.6),0px 10px 14px 1px rgba(100,100,100, 0.4),0px 4px 18px 3px rgba(100,100,100, 0.2)',
                  '0px 6px 7px -4px rgba(100,100,100, 0.6),0px 11px 15px 1px rgba(100,100,100, 0.4),0px 4px 20px 3px rgba(100,100,100, 0.2)',
                  '0px 7px 8px -4px rgba(100,100,100, 0.6),0px 12px 17px 2px rgba(100,100,100, 0.4),0px 5px 22px 4px rgba(100,100,100, 0.2)',
                  '0px 7px 8px -4px rgba(100,100,100, 0.6),0px 13px 19px 2px rgba(100,100,100, 0.4),0px 5px 24px 4px rgba(100,100,100, 0.2)',
                  '0px 7px 9px -4px rgba(100,100,100, 0.6),0px 14px 21px 2px rgba(100,100,100, 0.4),0px 5px 26px 4px rgba(100,100,100, 0.2)',
                  '0px 8px 9px -5px rgba(100,100,100, 0.6),0px 15px 22px 2px rgba(100,100,100, 0.4),0px 6px 28px 5px rgba(100,100,100, 0.2)',
                  '0px 8px 10px -5px rgba(100,100,100, 0.6),0px 16px 24px 2px rgba(100,100,100, 0.4),0px 6px 30px 5px rgba(100,100,100, 0.2)',
                  '0px 8px 11px -5px rgba(100,100,100, 0.6),0px 17px 26px 2px rgba(100,100,100, 0.4),0px 6px 32px 5px rgba(100,100,100, 0.2)',
                  '0px 9px 11px -5px rgba(100,100,100, 0.6),0px 18px 28px 2px rgba(100,100,100, 0.4),0px 7px 34px 6px rgba(100,100,100, 0.2)',
                  '0px 9px 12px -6px rgba(100,100,100, 0.6),0px 19px 29px 2px rgba(100,100,100, 0.4),0px 7px 36px 6px rgba(100,100,100, 0.2)',
                  '0px 10px 13px -6px rgba(100,100,100, 0.6),0px 20px 31px 3px rgba(100,100,100, 0.4),0px 8px 38px 7px rgba(100,100,100, 0.2)',
                  '0px 10px 13px -6px rgba(100,100,100, 0.6),0px 21px 33px 3px rgba(100,100,100, 0.4),0px 8px 40px 7px rgba(100,100,100, 0.2)',
                  '0px 10px 14px -6px rgba(100,100,100, 0.6),0px 22px 35px 3px rgba(100,100,100, 0.4),0px 8px 42px 7px rgba(100,100,100, 0.2)',
                  '0px 11px 14px -7px rgba(100,100,100, 0.6),0px 23px 36px 3px rgba(100,100,100, 0.4),0px 9px 44px 8px rgba(100,100,100, 0.2)',
                  '0px 11px 15px -7px rgba(100,100,100, 0.6),0px 24px 38px 3px rgba(100,100,100 0.14),0px 9px 46px 8px rgba(100,100,100, 0.2)',
              ]
            : [
                  'none',
                  `0px 1px 3px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 1px 1px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 2px 1px -1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 1px 5px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 2px 2px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 3px 1px -2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 1px 8px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 3px 4px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 3px 3px -2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 2px 4px -1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 4px 5px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 1px 10px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 3px 5px -1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 5px 8px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 1px 14px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 3px 5px -1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 6px 10px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 1px 18px 0px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 4px 5px -2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 7px 10px 1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 2px 16px 1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 5px 5px -3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 8px 10px 1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 3px 14px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 5px 6px -3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 9px 12px 1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 3px 16px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 6px 6px -3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 10px 14px 1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 4px 18px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 6px 7px -4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 11px 15px 1px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 4px 20px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 7px 8px -4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 12px 17px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 5px 22px 4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 7px 8px -4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 13px 19px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 5px 24px 4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 7px 9px -4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 14px 21px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 5px 26px 4px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 8px 9px -5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 15px 22px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 6px 28px 5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 8px 10px -5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 16px 24px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 6px 30px 5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 8px 11px -5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 17px 26px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 6px 32px 5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 9px 11px -5px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 18px 28px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 7px 34px 6px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 9px 12px -6px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 19px 29px 2px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 7px 36px 6px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 10px 13px -6px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 20px 31px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 8px 38px 7px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 10px 13px -6px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 21px 33px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 8px 40px 7px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 10px 14px -6px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 22px 35px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 8px 42px 7px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 11px 14px -7px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 23px 36px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 9px 44px 8px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
                  `0px 11px 15px -7px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.2,
                  )},0px 24px 38px 3px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.14,
                  )},0px 9px 46px 8px ${colorToRgba(
                      themePalette(color, mode).palette.primary.light,
                      0.12,
                  )}`,
              ],
    components: {
        MuiButton: {
            contained: {
                boxShadow: 'none',
            },
            root: {
                borderRadius: 20,
                fontWeight: 600,
            },
            sizeSmall: {
                padding: '7px 12px',
            },
        },
    },
});

export default applicationTheme;

註釋:shadows 內容較長 完整api配置項請參考官網

配置 theme白天/夜晚模式

    import { useTheme } from '@mui/material/styles';
    const theme = useTheme();
    const { children } = props;
    ...
    <Box
      sx={{
          minHeight: '100vh',
          bgcolor: theme.palette.mode === 'dark' ? '#000' : '#fff',
          color: theme.palette.mode === 'dark' ? '#fff' : '#000',
      }}>
      {children}
    </Box>

註釋:theme 配置api中包含 background的配置項,可以使用自定義配置

配置調色盤

在applicationTheme函式中已經合併了themePalette(color, mode).palette,這裡只需要在themePalette 函式中 進行自定義主題色就可以了,

  import themeConfig from './themeConfig'

  const themePalette = (color, mode) => {
    return themeConfig[color];
  };
  export default themePalette;

註釋:themeConfig檔案在上面已經貼上出來了,這裡我沒有使用mode引數,可以根據專案實際情況 配置 dark/light不同的主題色。例如:pink下再細分 dark - palette / light - palette;

元件的漢化

以Date Range Picke 為示例:
原始 時間區間選擇器
image.pngimage.png

漢化後:

image.pngimage.png

官網中提供了一些api
image.pngimage.png
註釋:其中有個注意點:1? 和 2? 兩個部門找遍了api文件和 api原始碼都沒有找到相關對應api,只能修改對應元件的原始碼了,根據元件原始碼 定位到

 1? 的位置存在於 元件@mui/lab/CalendarPicker/PickersCalendarHeader.js 中
    修改如下:
    transKey: month.getMonth() + 1, // 這裡將 utils.format(month, 'month') 修改為 month.getMonth() + 1
    children: month.getMonth() + 1 // 這裡將 utils.format(month, 'month') 修改為 month.getMonth() + 1
 2? 的位置存在於 元件@mui/lab/CalendarPicker/PickersCalendar.js中
     修改如下:
    children: ['日','一','二','三','四','五','六'].map((day, i) => /*#__PURE__*/_jsx(PickersCalendarWeekDayLabel, {
    // 這裡將 這裡將  utils.getWeekdays() 修改為 ['日','一','二','三','四','五','六']

    使用 patch-package 將 修改後的打包成 patches包。

另外需注意:在設定inputFormat="yyyy/MM/dd" 後,控制檯會彈出警告

The mask "__/__/____" you passed is not valid for the format used yyyy/MM/dd. Falling down to uncontrolled not-masked input.

這裡 根據原始碼檢視 mask 相關配置項如下,暫無好的解決方案。
image.png

元件的二次封裝

其中比較常用的有Input Select Modal等,下面做個簡單介紹

1、Input元件 TextField InputBase

image.png
image.png

    <Paper sx={{ p: '2px 4px', display: 'flex', alignItems: 'center', width: '100%' }}>
        <InputBase
            sx={{ ml: 1, flex: 1 }}
            placeholder="請輸入"
            inputProps={{ 'aria-label': '請輸入' }}
            onKeyUp={(e) => {
               ...
            }}
        />
        <IconButton
            type="search"
            onClick={() => {
                ...
            }}
            sx={{ p: 1 }}
            aria-label="search">
            <SearchIcon />
        </IconButton>
    </Paper>
2、Select 元件 TextField
image.png
  <TextField
    id="search_select"
    select
    sx={{ width: 130, bgcolor: 'transparent' }}
    value={currency}
    onChange={(e) => ...}>
    {selectArr.map((option) => (
        <MenuItem className="search_item" key={option.value} value={option.value}>
            <span style={{ fontSize: 12 }}>{option.label}</span>
        </MenuItem>
    ))}
  </TextField>

註釋:這裡比較注意的是樣式的調整

    #search_select {
        min-height: 30px !important;
        padding: 0 0 0 10px !important;
        line-height: 30px !important;
    }
    .search_item {
        min-height: 30px;
        line-height: 30px;
        padding: 0 0 0 10px;
    }

Modal元件

   const style = {
        position: 'absolute',
        top: '50%',
        left: '50%',
        borderRadius: 2,
        transform: 'translate(-50%, -50%)',
        width: '60vw',
        bgcolor: 'background.paper',
        pt: 2,
        pb: 2,
    };
    <Modal
        open={open}
        onClose={handleClose}
        hideBackdrop
        aria-labelledby="modal-modal-title"
        aria-describedby="modal-modal-description">
        <Box sx={style}>
            <Typography
                sx={{ fontSize: 16, mb: 2, pl: 2, pb: 0.5 }}
                variant="h6"
                gutterBottom
                component="div">
                {title}
            </Typography>
            <Box
                sx={{
                    display: 'flex',
                    alignItem: 'center',
                    justifyContent: 'center',
                    flexWrap: 'wrap',
                }}>
                ...
            </Box>
        </Box>
    </Modal>

總結

Material-UI 可玩性還是比較大的,官網也有很多的demo,但是由於版本升級到5.X後,很多api被廢棄了,搭配上需要自己去研究了,總體上來說Material風格還是不錯的。在後續的過程中再邊總結,邊更新文件吧。。。

相關文章