sized_icon_button 0.0.1 copy "sized_icon_button: ^0.0.1" to clipboard
sized_icon_button: ^0.0.1 copied to clipboard

Create different size of Icon Buttons.

sized_icon_button #

Create different size of Icon Buttons

Getting Started #

Install #

sized_icon_button: <version>

Usage #

Basic Usage

 SizedIconButton(
    icon: Icon(
    Icons.alarm,
    ),
    onPressed: () {
    print("onPressed");
    },
),

Advanced

SizedIconButton(
    color: Colors.blue.shade100,
    padding: EdgeInsets.all(24),
    tooltip: 'Alarm',
    icon: Icon(
    Icons.alarm,
    color: Colors.black,
    size: 48,
    ),
    onPressed: () {
    print("onPressed");
    },
),

Options #

final Icon icon;
final Function()? onPressed;
final EdgeInsets? padding;
final bool autofocus;
final Color? splashColor;
final Color? focusColor;
final Color? hoverColor;
final Color? color;
final FocusNode? focusNode;
final String? tooltip;
final Decoration? tooltipDecoration;
1
likes
130
points
10
downloads

Publisher

verified publishercrawlink.com

Weekly Downloads

Create different size of Icon Buttons.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on sized_icon_button