Material-UI: невозможно изменить размер элемента сетки внутри направления сетки = столбец alignItems = "center" - PullRequest
0 голосов
/ 23 мая 2019

Когда я создаю Grid с direction = column и alignItems = "center". Мои дочерние элементы сетки имеют фиксированный размер, и я не могу изменить его с помощью xs = {...}. Следующий код создает текстовые поля с одинаковой шириной. Удаление либо direction, либо alignItems изменяет размеры гридов в соответствии с назначенным мною хз. Я хотел бы иметь более широкие текстовые поля и по-прежнему держать их в центре.

<Grid container spacing={2} direction="column" alignItems="center">
          <Grid item xs={4}>
            <TextField
              name="username"
              variant="outlined"
              required
              fullWidth
              id="username"
              label="Username"
              autoFocus
              value="peter"
            />
          </Grid>
          <Grid item xs={6}>
            <TextField
              variant="outlined"
              required
              fullWidth
              id="shortDescription"
              label="Short Description"
              name="shortDescription"
              value="I create awesome games"
            />
          </Grid>
</Grid>

Я не уверен, является ли это ошибкой или ожидаемым поведением Material-UI. Может быть, кто-нибудь знает обходной путь, используя направление или alignItems.

Вы можете увидеть и проверить проблему на CodeSandbox

1 Ответ

0 голосов
/ 24 мая 2019

Спасибо, Райан Когсвелл.Я переписал свой код, используя несколько контейнеров.

import React, { Component } from "react";
import Grid from "@material-ui/core/Grid";
import TextField from "@material-ui/core/TextField";
import Typography from "@material-ui/core/Typography";
import { withStyles } from "@material-ui/core/styles";
import Avatar from "@material-ui/core/Avatar";
import Button from "@material-ui/core/Button";
import Container from "@material-ui/core/Container";

const styles = theme => ({
  debug: {
    border: "1px grey solid"
  },
  root: {
    marginTop: 32
  },
  fieldName: {},
  avatar: {
    width: 200,
    height: 200
  },
  submitButton: {}
});

class EditProfile extends Component {
  render() {
    const { classes } = this.props;

    return (
      <Container maxWidth="xs">
        <Grid container className={classes.root} justify="center">
          <Grid item>
            <Avatar
              item
              alt="Remy Sharp"
              src="https://picsum.photos/300/300"
              className={classes.avatar}
            />
          </Grid>
          <Grid item>
            <Typography variant="h5" align="center">
              Change Profile Photo
            </Typography>
          </Grid>
        </Grid>
        <Grid container spacing="2" className={classes.root}>
          <Grid item xs={12}>
            <TextField
              name="username"
              variant="outlined"
              required
              fullWidth
              id="username"
              label="Username"
              autoFocus
              value="jingyi4"
            />
          </Grid>
          <Grid item xs={12}>
            <TextField
              variant="outlined"
              required
              fullWidth
              id="shortDescription"
              label="Short Description"
              name="shortDescription"
              value="I create awesome games"
            />
          </Grid>
          <Grid item xs={12}>
            <TextField
              variant="outlined"
              required
              fullWidth
              id="longDescription"
              label="Long Description"
              name="longDescription"
              value={`One morning, when Gregor Samsa woke from troubled dreams, he found himself transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections. The bedding was hardly able to cover it and seemed ready to slide off any moment. His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked. "What's happened to me?" he thought. It wasn't a dream. His room, a proper human room although a little too small, lay peacefully between its four familiar walls. A collection of textile samples lay spread out on the table - Samsa was a travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. Drops "`}
              multiline
            />
          </Grid>
          <Grid container justify="center" className={classes.root}>
            <Button
              type="submit"
              variant="contained"
              color="primary"
              className={classes.submitButton}
              disabled
            >
              Submit
            </Button>
          </Grid>
        </Grid>
      </Container>
    );
  }
}

export default withStyles(styles)(EditProfile);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...