【问题标题】:Resize react-beautiful-dnd调整 react-beautiful-dnd 的大小
【发布时间】:2020-04-04 06:33:54
【问题描述】:
【问题讨论】:
标签:
reactjs
react-beautiful-dnd
【解决方案1】:
您也可以提供内联样式和条件样式。
如下代码所示,它的内联样式。
<Droppable
droppableId={`${laneItem.Value}`}
type="TASK"
key={`droppable-${laneItem.Value}`}
>
{(provided) => (
<div
id={laneItem.Value}
ref={provided.innerRef}
{...provided.droppableProps}
key={`droppable-div-${laneItem.Value} - ${index + 1}`}
style={{ height: '200px' }}
>
这里是条件样式,
<Droppable
droppableId={`${laneItem.Value}`}
type="TASK"
key={`droppable-${laneItem.Value}`}
>
{(provided) => (
<div
id={laneItem.Value}
ref={provided.innerRef}
{...provided.droppableProps}
key={`droppable-div-${laneItem.Value} - ${index + 1}`}
styles={true ? bigHeight : smallHeight}
>
big-Height 和 small-Height 是常量。
const big-Height: any = {
root: {
height: "200px"
}
}