In my page I have a gridview. In gridview items I use ClipPath. The problem is here. The path that I shows is on top and it is not possible to change it's position into the bottom:
@override
Widget build(BuildContext context) {
ScreenUtil.init(context,
designSize: Size(360, 640), allowFontScaling: true);
return Scaffold(
body: Stack(
children: [
Padding(
padding: Dimention.mainChartsOverallLRPadding.copyWith(top: 100.h),
child: Column(
mainAxisSize: MainAxisSize.max,
children: [
Expanded(
child: GridView.count(
padding: EdgeInsets.zero,
physics: ScrollPhysics(),
crossAxisCount: 2,
childAspectRatio: 160 / 144,
mainAxisSpacing: 8,
crossAxisSpacing: 8,
children: gridItems
.map(
(item) => Container(
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(8),
),
child: Stack(
children: [
ClipPath(
clipper: ChartDegreeArtWidget(),
child: Container(
decoration: BoxDecoration(
color: item.color.toColor(),
borderRadius: BorderRadius.circular(8),
),
),
)
],
),
),
)
.toList(),
shrinkWrap: true,
),
),
],
),
),
],
),
);
It's result:
How can I change curve path position into bottom of container ? Align is not working

