0
我是新的框架,從那時起我一直在使用react-bootstrap。如何在React的Material-UI中正確使用Responsiviness?
據我所知,Material-UI不提供GRID系統,所以我爲我的應用程序提供了react-flexbox-grid。但是Material-UI的組件似乎並不關注網格大小。下面是我如何使用它:
import React from 'react'
import MenuContainer from '../containers/MenuContainer.jsx'
import AppBar from 'material-ui/AppBar'
import { Grid, Row, Col } from 'react-flexbox-grid'
const IndexComponent = ({children}) => (
<Grid fluid>
<Row>
<Col xs={12} md={12} center="xs">
<AppBar
title="Comics Index"
showMenuIconButton={false}
/>
</Col>
</Row>
<Row>
<Col xs={12} md={3}>
<MenuContainer width="100%" />
{children}
</Col>
</Row>
</Grid>
)
export default IndexComponent
我的第二個問題是:如何使能在移動使用材料的UI崩潰一個導航欄?我似乎無法找到任何方向,所有Material-UI的組件看起來都不響應
如果您使用的是打字稿,他們當前沒有爲網格發佈打字稿。 – mjwrazor