neobox 0.0.1
neobox: ^0.0.1 copied to clipboard
A Flutter widget library for building modern and sleek UI designs. With the help of this widget one can create a neomorphic design easily
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),
)),
)