flutter_darix 0.0.1
flutter_darix: ^0.0.1 copied to clipboard
A Simple Flutter package that help to create buttons with inner progres-bar indicator.
A Simple Flutter package that help to create buttons with inner progres-bar indicator. This package contains 4 button types: TextButton, ElevatedButton, FilledButton, and OutlinedButton.
Preview #
Getting started #
To use this package, add flutter_darix as a dependency in your pubspec.yaml file. Then import the package like this:
import 'package:flutter_darix/flutter_darix.dart';
Usage #
This is Simple example:
DariXFilledButton(
onPressed: () => null,
buttonText: 'push me!',
width: 140,
height: 45,
),