Info: A complete, ready to use, Neumorphic UI kit for Flutter, ????️ dark mode compatible.
flutter_neumorphic
A complete, ready to use, Neumorphic ui kit for Flutter
⚙️ Installation
https://pub.dev/packages/flutter_neumorphic
dependencies: flutter_neumorphic: ^1.0.0+3
The in your .dart files
import 'package:flutter_neumorphic/flutter_neumorphic.dart';
What’s neumorphic
Material Cards
A Modern / Material (upgraded) card usually is a surface floating on top of our perceived background and casting a shadow onto it. The shadow both gives it depth and also in many cases defines the shape itself — as it’s quite often borderless.
Neumorphic cards
Neumorphic card however pretends to extrude from the background. It’s a raised shape made from the exact same material as the background. When we look at it from the side we see that it doesn’t “float”.
Here’s a Nereumorphic Button tap (slowed x2) from the sample app, you can see how the element seems to change its depth to its surface.
???? Widgets
???? Neumorphic
Neumorphic( boxShape: NeumorphicBoxShape.roundRect(borderRadius: BorderRadius.circular(12)), style: NeumorphicStyle( shape: NeumorphicShape.concave, depth: 8, lightSource: LightSource.topLeft, color: Colors.grey ), child: ... )
☝️ Playing with LightSource & Depth
????️ Attributes
Attributes | Values | Description |
---|---|---|
LightSource | TopLeft, BottomRight, etc. / (dx, dy) | The source of light specifit to the theme or the widget, used to project white/dark shadows on neumorphic elements |
Shape | Concave / Convex / Flat | The shape of the curve used in the neumorphic container |
Depth | -20 <= double <= 20 | The distance of the widget to his parent. Can be negative => emboss. It influences on the shadow’s color and its size/blur |
Intensity | 0 <= double <= 1 | The intensity of the Light, it influences on the shadow’s color |
Color | any Color | The default color of Neumorphic elements |
Accent | any Color | The default accent color of the Neumorphic element when activated (eg: checkbox) |
Variant | any Color | The default secondary color of the Neumorphic element (eg: used as second color on the progress gradient) |
BoxShape | Circle, RoundRect(radius), Stadium | The box shape of a Neumorphic element. Stadium : roundrect with cirlces on each side |
???? Shapes
Shape | Widget | Image | Condition |
---|---|---|---|
Flat | depth >= 0 && shape == Flat | ||
Convex | depth >= 0 && shape == Convex | ||
Concave | depth >= 0 && shape == Concave | ||
Emboss | depth < 0 |
???? Neumorphic Theme
NeumorphicTheme( currentTheme: CurrentTheme.LIGHT, //or DARK / SYSTEM darkTheme: NeumorphicThemeData( baseColor: Color(0xff333333), accentColor: Colors.green, lightSource: LightSource.topLeft, depth: 4, intensity: 0.3, ), theme: NeumorphicThemeData( baseColor: Color(0xffDDDDDD), accentColor: Colors.cyan, lightSource: LightSource.topLeft, depth: 6, intensity: 0.5, ), child: ... )
To retrieve the current used theme :
final theme = NeumorphicTheme.getCurrentTheme(context); final baseColor = theme.baseColor; final accentColor = theme.accentColor; ...
Toggle from light to dark
NeumorphicTheme.of(context).currentTheme = CurrentTheme.DARK;
Know if using dark
if(NeumorphicTheme.of(context).isUsingDarkMode){ }
Download Flutter-Neumorphic UI Kit Source Code on GitHub
Provides the list of the opensource Flutter apps collection with GitHub repository.