목차

Neumorphic

Neumorphic Card

snippet.dart
Neumorphic(
  margin: EdgeInsets.all(20),
  boxShape: NeumorphicBoxShape.roundRect(
      borderRadius: BorderRadius.circular(12)),
  style: NeumorphicStyle(
      depth: NeumorphicTheme.embossDepth(context)),
  padding: EdgeInsets.symmetric(vertical: 2, horizontal: 18),
  child: Container(
    height: 200,
  ),
)

관련 문서