offset property

Offset offset
final

duomorphism card

this package help you to give glassomorphic + neomrphic both effects to a container (at a time).

           DuoMorphicCard(
              height: 200,
             width: 200,
              blur: 5,
              innerShadowColor: Colors.grey,
              radius: BorderRadius.circular(10),
              cardBackgroundColor: Colors.white,
              opacity: 0.5,
              offset: Offset(-5, -5),
              child: Center(
                child: Text('Hello World'),
              ),
            ),

InnerShadow offset

Implementation

/// InnerShadow offset
final Offset offset;