Easy Actions
Overview
A Flutter package for simple and easy to use actions like buttons, checkboxes and switches.
Feature
- Elevated Button
- Outlined 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: () {},
),
Comments are closed.