A sliding Flutter widget. This is a Dart 3 compatible version of the slide_button package.

Installing
Add the following to your pubspec.yaml:
dependencies:
slide_tape: ^0.1.0
Usage
SlideTape(
height: 70,
backgroundChild: Center(
child: Text("This is a text"),
),
backgroundColor: Colors.amber,
slidingBarColor: Colors.blue,
slideDirection: SlideDirection.RIGHT,
)
Additional information
The link to the original package: slide_button