material_neumorphic_background 1.1.3

SDKflutter
Platformandroidioswindowslinuxmacosweb

A Flutter package for creating Neumorphic background.

Material Neumorphic Background

Part of Material Neumorphic widgets suit.

Usage

A container that takes the current [NeumorphicTheme] baseColor as backgroundColor @see [NeumorphicTheme]

Default color it from material colorscheme, [secondaryContainer]

It can provide too a roundRect clip of the screen border using [borderRadius], [margin] and [backendColor]

NeumorphicBackground(
    borderRadius: BorderRadius.circular(12),
    margin: EdgeInsets.all(12),
    child: Container(
        height: 100,
        width: 100,
    ),
),