koiralapankaj7 / neumorph_calculator

Flutter package to create neumorphic widget. This project is inspired by https://neumorphism.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

neumorph_calculator

A new Flutter package project.

Getting Started

Use this Neumorph widget to create desired neumorphic container.

const Neumorph({
    Key key,
    this.height = 200.0,
    this.width = 200.0,
    this.radius = 40.0,
    this.distance = 20.0,
    this.intensity = 1.0,
    this.blur = 40.0,
    this.shape = NeumorphShape.pressed,
    this.lightSource = Alignment.topLeft,
    this.child,
    this.color = Colors.white,
}) : assert(intensity != null ? intensity >= 0.0 && intensity <= 1.0 : true),
super(key: key);

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

neumorph_calculator

About

Flutter package to create neumorphic widget. This project is inspired by https://neumorphism.io/

License:Other


Languages

Language:Dart 100.0%