NeoBox
This is a new Flutter Package which can help developers to create modern UI design. WIth the help of this package developers can create Neomophic design easily.
Features
- Easy To Use
- Highly Customizable
Getting Started
To use this package, add neobox as a dependency in your pubspec.yaml file.
Usage
Minimal Example:
NeoBox(
blurRadius: 30,
width: 100,
height: 100,
color: Colors.blueGrey,
borderRadius: BorderRadius.circular(24),
child: Center(
child: Text(
'Hello World!',
style: TextStyle(color: Colors.white),
)),
)