✨ iauro Widgets

A collection of pre-developed widgets to ease the development cycle and reduce the redundant code.

🎖 Installing

dependencies:
  iauro_widgets: ^0.0.1

⚡️ Import

import 'package:iauro_widgets/iauro_widgets.dart';

⚡️ Usage

IACommonWidgets IACommonWidgets = IACommonWidgets(context);

// Build Scaffold
  Scaffold buildScaffold() {
    return Scaffold(
      appBar: IACommonWidgets.iaAppBar(
        title: "Home",
      ),
    );
  }
// Build a loader in just one single line.
IACommonWidgets.iaLoader()

Console Logger

/// Use the [iaLogger] to print the data on to the console.
iaLogger.log("This is just a demo console log.");

// Additionally, you can also specify the kind of log this is going to be.
iaLogger.log("Failed: '$e'.", level: Level.error);

/// Here is the list of all the levels of [iaLogger] available.
/*
    * verbose
    * debug
    * info
    * warning
    * error
    * wtf
    * nothing
*/

🐛 Bugs/Requests

If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull request are also welcome.

☀️ Authors

Sagar Ghag

⭐️ License

MIT License

Libraries

iauro_widgets