utils_x library

A collection of powerful Flutter widget extensions for cleaner, more expressive code. Developed by Dileep P.

Utils X provides chainable widget extensions that make your Flutter code more readable and reduce boilerplate.

Usage

import 'package:utils_x/utils_x.dart';

// Add press effect to any widget
MyButton().pressEffect()

// Chain multiple extensions
MyCard()
    .pressEffect()
    .padding(16)
    .rounded(12)
    .centered()

Classes

PressEffectWidget
A widget that adds a press/tap effect (scale down animation) to its child.

Extensions

InteractionExtensions on Widget
Extensions for adding interaction effects to widgets.
LayoutExtensions on Widget
Extensions for layout and positioning of widgets.
StylingExtensions on Widget
Extensions for styling widgets.
VisibilityExtensions on Widget
Extensions for controlling widget visibility.
WidgetExtensions on Widget
General-purpose widget extensions.