You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 27, 2023. It is now read-only.
ClipShadow does not wrap its child inside itself fully. It cuts out a section of my clipper.
eg this

should be like

-My code
return Container(
child: ClipShadow(
clipper: SearchPageClipPainter(
),
boxShadow: [
BoxShadow(
offset: Offset(0.0, 0.0),
blurRadius: 5.0,
spreadRadius: 5.0,
color: VerificationAppTheme.grey,
)
],
child: Container(
height: MediaQuery.of(context).size.height * 0.45,
width: MediaQuery.of(context).size.width,
decoration: BoxDecoration(
color: MyAppTheme.colorGreenAppBar,
),