A flutter plugin for inner shadows.
Create an inner shadow, works also on transparent background child.
Add this to your package's pubspec.yaml
file:
dependencies:
inner_shadow:
git:
url: https://github.com/yabzec/inner_shadow.git
ref: main
Then run:
flutter pub get
InnerShadow(
child: Container(width: 200, height: 200),
color: Colors.black,
borderRadius: BorderRadius.circular(20),
shadowSize: 0.5,
shadowBlur: 3,
);