neubrutalism_ui 2.0.2 copy "neubrutalism_ui: ^2.0.2" to clipboard
neubrutalism_ui: ^2.0.2 copied to clipboard

A Flutter package that provides a set of Neubrutalism-style UI components that you can use to build beautiful and functional user interfaces for your apps.

Button Preview

neubrutalism_ui v2.0.0 🥳

Request Feature
Report Bug

Contributors Stargazers Issues License

Table Of Contents #

About The Project #

"Neubrutalism UI is a comprehensive UI kit for Flutter that incorporates the principles of Neubrutalism design. With this package, you can easily add beautiful and functional UI components to your Flutter app in a style that emphasizes simplicity and minimalism.

The package includes a variety of UI components such as buttons, cards, forms, and more, each designed with a subtle shadow and rounded corners that add depth and texture to your app. You can customize the appearance of each component to fit the specific needs of your app, including changing the border radius, depth, and color.

Whether you're a beginner or an experienced developer, Neubrutalism UI makes it easy to create elegant and functional UI components in Flutter that align with the principles of Neubrutalism design. With clear and concise documentation and easy installation instructions, you can start using the package in your app today."

Built With Flutter 💙 #

Getting Started #

What's the Difference !!! v1.0.0 vs v2.0.0#

Includes Breaking Changes (Refer to Changelog),

NeuTextButton(
  borderColor: Colors.black,
  shadowColor: Colors.black,
  buttonHeight: 50,
  buttonWidth: MediaQuery.of(context).size.width * 0.5,
  child: Row(
    mainAxisAlignment: MainAxisAlignment.center,
    children: const [
      Padding(
        padding: EdgeInsets.all(8.0),
        child: Text(
          "Hello",
          style: TextStyle(
              fontSize: 20, fontWeight: FontWeight.w600),
        ),
      ),
    ],
   ),
 ),
NeuTextButton(
      borderRadius: BorderRadius.circular(12),
      buttonColor:
          const Color.fromARGB(255, 236, 199, 211),
      buttonHeight: 60,
      buttonWidth: 100,
      enableAnimation: true,
      text: Text(
        "Hello",
        style: GoogleFonts.robotoCondensed(
            textStyle: const TextStyle(
          fontSize: 20,
          fontWeight: FontWeight.w700,
        ),
        ),
      ),
),

Usage #

NeuTextButton with Customization (v2.0.0) : Enable Cool Animation #

(Set enableAnimation=true)

Animations are currently mapped to the value fo offset provided in the offset property in the NeuTextButton and NeuIconButton widgets. (P.S: More the Value of the offset more will be the onPressed bounce animation Value.)

NeuTextButton(
      borderRadius: BorderRadius.circular(12),
      buttonColor:
          const Color.fromARGB(255, 236, 199, 211),
      buttonHeight: 60,
      buttonWidth: 100,
      enableAnimation: true,
      text: Text(
        "Hello",
        style: GoogleFonts.robotoCondensed(
            textStyle: const TextStyle(
          fontSize: 20,
          fontWeight: FontWeight.w700,
        ),
        ),
      ),
),

The Neu - NeuBottomNav #

Usage ans Setup

In-order to disable the container overflow behind the Bottom Nav we need to specify the following flags in both the Scaffold and SafeArea widget.

The NeuBottomNav contains some additional flags such as hideOnScroll, enableFloating etc:

Scaffold(
      resizeToAvoidBottomInset: false,
      extendBody: true,
      child:SafeArea(
        bottom: false,
      ))

Examples:

Roadmap #

See the open issues for a list of proposed features (and known issues).

Contributing #

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  • If you have suggestions for adding or removing projects, feel free to open an issue to discuss it, or directly create a pull request after you edit the README.md file with necessary changes.
  • Please make sure you check your spelling and grammar.
  • Create individual PR for each suggestion.

Creating A Pull Request #

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • Push to the Branch (git push origin feature/AmazingFeature)
  • Open a Pull Request (choose the Staging branch From the Dropdown)

License #

Distributed under the MIT License. See LICENSE for more information.

Author #

Contributors #

Contributors

33
likes
135
pub points
65%
popularity

Publisher

unverified uploader

A Flutter package that provides a set of Neubrutalism-style UI components that you can use to build beautiful and functional user interfaces for your apps.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

CC0-1.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on neubrutalism_ui