我在 android 视图中使用撰写按钮,但底部有一些阴影。我怎样才能删除它?
A B C D E score
0 12 4.5 6.1 BUY NaN 1
1 12 BUY BUY 5.6 NaN 2
2 BUY 4.5 6.1 BUY NaN 2
3 12 4.5 6.1 0 NaN 0
答案 0 :(得分:0)
在 elevation
中使用 FloatingActionButton
参数。在材料设计中,高程是两个表面之间沿 z 轴的相对距离。阴影使表面高程的差异变得明显。 (source)
您必须传递 FloatingActionButtonElevation
,它可以使用 elevation(...)
方法创建。
FloatingActionButton(
elevation = elevation(
defaultElevation = 0.dp
pressedElevation = 0.dp
),
// ...
) {
// ...
}
答案 1 :(得分:0)
通过 1.0.0-beta03
,您可以使用:
FloatingActionButton(
onClick = { expanded = !expanded },
modifier = Modifier,
elevation = FloatingActionButtonDefaults.elevation(0.dp,0.dp)
)