miniplayer 0.1.1 copy "miniplayer: ^0.1.1" to clipboard
miniplayer: ^0.1.1 copied to clipboard

outdated

Miniplayer for Flutter

Pub

A lightweight flutter package providing a miniplayer widget which resizes according to drag gestures and returns a builder function with the current height and percentage progress.

Usuage #

Miniplayer(
  minHeight: 70,
  maxHeight: 370,
  builder: (height, percentage) {
    return Center(
      child: Text('$height, $percentage'),
    );
  },
),