easy_actions 1.1.0 copy "easy_actions: ^1.1.0" to clipboard
easy_actions: ^1.1.0 copied to clipboard

A Flutter package for simple and easy to use buttons, checkboxes and switches.

Easy Actions #

style: very good analysis License: MIT

Overview #

A Flutter package for simple and easy to use actions like buttons, checkboxes and switches.

Features #

  • Elevated Button
  • Outlined Button
  • Icon Button

Getting Started #

Add the easy_actions package as a dependency in your flutter project.

dependencies:
  easy_actions: '^1.0.0'

Usage #

import 'package:easy_actions/easy_actions.dart';

Elevated Button #

 EasyElevatedButton(
  label: 'Hello World!',
  isRounded: true,
  onPressed: () {},
),

Outlined Button #

 EasyOutlinedButton(
  label: 'Hello World!',
  isRounded: true,
  onPressed: () {},
),

Icon Button #

 EasyIconButton(
  icon: Icons.add,
  onPressed: () {},
),
4
likes
90
pub points
68%
popularity

Publisher

verified publisherashishbhakhand.com

A Flutter package for simple and easy to use buttons, checkboxes and switches.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on easy_actions