我有一个弯曲的应用程序栏使用以下代码。我想添加一个阴影的权利下的曲线。任何帮助将不胜感激! image of curved AppBar
代码:
appBar: PreferredSize(
preferredSize: const Size.fromHeight(85.0),
child: AppBar(
title: const Text("Services"),
flexibleSpace: ClipPath(
clipper: Customshape(),
child: Container(
height: 250,
width: MediaQuery.of(context).size.width,
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
stops: [0.1, 0.55],
colors: <Color>[Color(0xff21CDAF), Color(0xff1093BC)],
),
),
),
),
),
),
class Customshape extends CustomClipper<Path> {
@override
Path getClip(Size size) {
double height = size.height;
double width = size.width;
var path = Path();
path.lineTo(0, height - 50);
path.quadraticBezierTo(width / 2, height, width, height - 50);
path.lineTo(width, 0);
path.close();
return path;
}
@override
bool shouldReclip(covariant CustomClipper<Path> oldClipper) {
return true;
}
}
我试着用一个材质小部件 Package 容器,并在盒子装饰中添加一个盒子阴影,但都不起作用。
2条答案
按热度按时间ttvkxqim1#
来获得你可以使用的阴影
如果您需要进一步的帮助,我将很乐意帮助更多!
w8f9ii692#
您可以使用此
Custom Widget
:并将其用作:
输出: