Skip to content

A Very Good Flutter Package, packed with amazing Neubrutalism UI Components.

License

Notifications You must be signed in to change notification settings

OnCampus-Community/neubrutalism_ui

 
 

Repository files navigation

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

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.

Authors

About

A Very Good Flutter Package, packed with amazing Neubrutalism UI Components.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 91.2%
  • HTML 3.9%
  • Ruby 3.0%
  • Swift 1.5%
  • Other 0.4%