Last updated:
0 purchases
iauro widgets
✨ 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
copied to clipboard
⚡️ Import #
import 'package:iauro_widgets/iauro_widgets.dart';
copied to clipboard
⚡️ Usage #
IACommonWidgets IACommonWidgets = IACommonWidgets(context);
// Build Scaffold
Scaffold buildScaffold() {
return Scaffold(
appBar: IACommonWidgets.iaAppBar(
title: "Home",
),
);
}
copied to clipboard
// Build a loader in just one single line.
IACommonWidgets.iaLoader()
copied to clipboard
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
*/
copied to clipboard
🐛 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 #
⭐️ License #
MIT License
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.