An arrow pad which resembles the mp3 player button style. But instead, there are 4 arrows.
The package can be used in any plaform. It is platform independent.
- Customize the widget using your own styles
- Different icon styles
There is no special setup required, just add the dependency in pubspec.yaml
, import the file, and you are good to go..
Add the dependency in pubspec.yaml
arrow_pad: ^0.1.0 # Note: use latest version
Import the widget into dart file
import 'package:arrow_pad/arrow_pad.dart';
The default usage of the arrow pad:
// default usage
const ArrowPad(),
The Arrow Pad can be customized with colors and icon styles.
// custom usage
ArrowPad(
height: 80.0,
width: 80.0,
innerColor: Colors.blue,
arrowPadIconStyle: ArrowPadIconStyle.arrow,
),
You can find more usage details in the /example
.
This package is licensed under BSD 3-Clause License