flutter_neumorphism 0.0.1 flutter_neumorphism: ^0.0.1 copied to clipboard
A complete, ready to use, Neumorphism ui kit for Flutter. Dark theming compatible & fully customizable.
⚙️ Installation #
https://pub.dev/packages/flutter_neumorphism
dependencies:
flutter_neumorphic: ^0.0.1
//requires flutter > 3.10.0
The in your .dart files
import 'package:flutter_neumorphism/flutter_neumorphism.dart';
## 📦 Neumorphic
```dart
Neumorphism(
style: NeumorphismStyle(
shape: NeumorphismShape.concave,
boxShape: NeumorphismBoxShape.roundRect(BorderRadius.circular(12)),
depth: 8,
lightSource: LightSource.topLeft,
color: Colors.grey
),
child: ...
)