Create Slide action in flutter. It's highly customizable

Features

Create customizable slide button

Usage

FlutterSlide(
    height: 60,
    buttonSize: 50,
    shimmer: false,
    width: double.infinity,
    action: () {},
    baseColor: Colors.white,
    backgroundColor: Colors.black,
    label: const Text(
    "Slide to Done",
    style: TextStyle(
        color: Color.fromARGB(255, 255, 255, 255),
        fontWeight: FontWeight.w500,
        fontSize: 20),
    ),
    child: const Icon( 
        Icons.arrow_forward_ios,
        size: 50,
        color: Colors.white,
    ),
)