Shadow A customizable shadow for any widget with flutter Jun 18, 2021 1 min read simple_shadow A customizable shadow for any widget Getting Started import: import 'package:simple_shadow/simple_shadow.dart'; Dart example: SimpleShadow( child: Image.asset('images/bird.png'), opacity: 0.6, // Default: 0.5 color: Colors.blue, // Default: Black offset: Offset(5, 5), // Default: Offset(2, 2) sigma: 7, // Default: 2 ) Dart Default Color: Colors.blue Opacity: 1 Sigma: 10 Offset: Offset(10, 10) GitHub https://github.com/marcelopmont/simple_shadow ShadowWidgets
Scroll ScrollShadow - A widget for Flutter that adds shadows to a scrollable child ScrollShadow - A widget for Flutter that adds shadows to a scrollable child 02 February 2022
Widgets Drop shadow effect for any widget in Flutter Drop shadow effect for any widget in Flutter 12 December 2021
Widgets A Hold To Confirm Button widget for Flutter apps This package provides a HoldToConfirmButton widget for Flutter apps. It allows users to hold down the button, which visually fills up as it's pressed. 30 March 2024