我正在将Drawer与BottomAppBar一起使用。当我单击菜单图标时,它将显示抽屉。我想更改Flutter Drawer的左上角和右上角半径。可以自定义拐角半径吗?
答案 0 :(得分:3)
您可以尝试将Drawer
包装在ClipRRect
ClipRRect(
borderRadius: BorderRadius.vertical(top: Radius.circular(4.0)),
child: Drawer(...),
)
答案 1 :(得分:1)
找到了解决方案。只需添加canvasColor:Colors.transparent对MaterialApp主题,它将起作用。
答案 2 :(得分:0)
这就是你应该表现的方式。
var onTypeLinkChange = function(data) {
if ( data.linktype == 'intlink' ) {
//hides row (label and input)
$('.tox-dialog__body-content .tox-form__group').eq(1).hide();
}
else {
$('.tox-dialog__body-content .tox-form__group').eq(1).show();
}
return Option.none();
}
答案 3 :(得分:-1)
您可以使用MaterialButton并按自己的方式自定义它们,例如:
MaterialButton(onPressed: ,shape: RoundedRectangleBorder(borderRadius: BorderRadius.only(topLeft:20.0 ,topRight: 10.0)),)