如何使用MaterialUI构建此布局?反应

时间:2018-12-14 01:56:14

标签: reactjs material-design material-ui

我正在使用MaterialUI用React构建我的UI。 我想建立这样的布局: enter image description here

我正在处理Grid的组件并在玩耍,但是需要帮助来放置该列:c有什么想法吗?谢谢。

其他详细信息:  *如果您知道一种使其移动的方法,我还没想到会有所帮助

谢谢!

1 个答案:

答案 0 :(得分:0)

我承认这不是最性感的解决方案,但是我认为最简单的方法是使用Material-UI的各种Table组件创建两个列,然后将网格或表嵌套在第一列中。如果有人有更好的选择,请发表评论,以便我也能学习!

在我的示例代码段中,我重用了Table组件来嵌套表。我没有一种样式可以精确地匹配您的样式,但足够接近以适合可行的起点。

const { Table, TableBody, TableRow, TableCell } = window["material-ui"];

const NestedTableExample = () => {
  const sharedColumnProps = { border: "none" };
  const sharedDivProps = {
    border: "solid 3px #000",
    height: "100%",
    padding: "10px",
    width: "100%"
  };
  const styles = {
    column1: { width: "150px", ...sharedColumnProps },
    column1Div: { background: "lightblue", ...sharedDivProps },
    column2: {
      width: "50px",
      ...sharedColumnProps
    },
    column2Div: {
      background: "orange",
      ...sharedDivProps
    }
  };
  return (
    <Table style={{ height: "100%" }}>
      <TableBody>
        <TableRow>
          <TableCell style={{ border: "none" }}>
            <Table>
              <TableBody>
                <TableRow>
                  <TableCell style={styles.column1}>
                    <div style={styles.column1Div}>Cell1</div>
                  </TableCell>
                </TableRow>
                <TableRow>
                  <TableCell style={styles.column1}>
                    <div style={styles.column1Div}>Cell2</div>
                  </TableCell>
                </TableRow>
                <TableRow>
                  <TableCell style={styles.column1}>
                    <div style={styles.column1Div}>Cell3</div>
                  </TableCell>
                </TableRow>
              </TableBody>
            </Table>
          </TableCell>
          <TableCell style={styles.column2}>
            <div style={styles.column2Div}>Cell4</div>
          </TableCell>
        </TableRow>
      </TableBody>
    </Table>
  );
};

ReactDOM.render(<NestedTableExample />, document.getElementById("app"));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/@material-ui/core@3.6.2/umd/material-ui.production.min.js"></script>
<div id="app"></div>