thicken library
The Thicken widget allows you to thicken a given child widget by creating multiple translated layers of the child. The amount of thickness determines how many layers will be drawn.
The widget is useful when you want to create a "thick" visual effect by duplicating the child widget with slight offsets.
Example usage:
Thicken(
thickness: 5.0,
child: Text(
'Thickened Text',
style: TextStyle(fontSize: 24),
),
)