Skip to content

SR-INGENIOUSMINDSLAB/fancy_element

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fancy Element

Implement fancy elements to Your Flutter App.

Current Widgets

  • Containers
    • Card Container
    • Gredient Container
    • Neumorphism Container

More Fancy Widget Will be added soon.

Fancy Card -: Create fancy Card

FancyCard(
                width: Fancy.width(context),
                height: Fancy.height(context) * 0.40,
                redius: 10,
                child: Center(
                  child: Container(
                    child: const Text(
                      "This Is Fancy Card",
                      style: TextStyle(fontSize: 20),
                    ),
                  ),
                ),
              ),

Fancy Card

Fancy Container -: Create Gredient Container with Title and subtitle

 FancyContainer(
                    color1: const Color(0xff0061ff),
                    color2: const Color(0xff60efff),
                    onTap: () {}),

Fancy Container

Neumorphism Container -: This Widget is usefull for create Neumorphism Container.

const NeumorphismContainer(),

https://raw.githubusercontent.com/MrShailandra/fancy_element/master/images/1657915139667.JPEG

Wanna Navigate To new Page? Use Below Snipet for Navigating.

Go.to(context, const NewPage());
Go.toNamed(context, "/page", argument: {"name": id});
Go.off(context, const NewPage());
Go.offAll(context, const NewPage());
Go.back(context);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 38.2%
  • CMake 33.3%
  • Dart 20.0%
  • HTML 3.4%
  • C 2.6%
  • Swift 2.1%
  • Other 0.4%