0 purchases
sliding action button
Features #
This package provides an easy implementation of sliding action button. Currently, it is offering two pre-defined types with many customizations like changing button container color, adding custom icon to draggable buttons, enable or disable button with applying different color per status.
Available methods: #
CircleSlidingActionButton
SquareSlidingActionButton
Getting started #
Minimum Flutter SDK: 3.0.0
Usage #
General parameters used in all options #
Parameters
Description
height
This is the height of the whole widget
width
This is the width of the whole widget
parentBoxRadiusValue
This is the double value for the BorderRadius.circular() attribute to configure the corners of parent box
parentBoxBackgroundColor
This is the background color of the parent box when isEnable is True. NOTE: You cannot set this and also, set the parentBoxGradientBackgroundColor or parentBoxDisableGradientBackgroundColor
parentBoxDisableBackgroundColor
This is the background color of the parent box when isEnable is False. NOTE: You cannot set this and also, set the parentBoxGradientBackgroundColor or parentBoxDisableGradientBackgroundColor
parentBoxGradientBackgroundColor
This is the background color of the parent box in case you want to use gradient when isEnable is True. NOTE: You cannot set this and also, set the parentBoxBackgroundColor or parentBoxDisableBackgroundColor
parentBoxDisableGradientBackgroundColor
This will be the background color of the parent box in case you want to use gradient when isEnable is False. NOTE: You cannot set this and also, set the parentBoxBackgroundColor or parentBoxDisableBackgroundColor
initialSlidingActionLabel
This is the text appear in the parent box before the sliding action
finalSlidingActionLabel
This is the text appear in the parent box after the sliding action
initialSlidingActionLabelTextStyle
This is the text styling of the label appear before the sliding action
finalSlidingActionLabelTextStyle
This is the text styling of the label appear after the sliding action. In case this field is null the same style as the initialSlidingActionLabelTextStyle will be used.
isEnable
This is used to enable or disable the sliding action. The default value is True
onSlideActionCompleted
This is a callback used to indicate the end of the sliding action with success
onSlideActionCanceled
This is a callback used to indicate the end of the sliding action without suceed
CircleSlidingActionButton #
Parameters
Description
circleSlidingButtonSize
This is the width and height of the circle(draggable) button
circleSlidingButtonRadiusValue
This is the double value for the BorderRadius.circular() attribute on the circle button
leftEdgeSpacing
This is used to align the left side of circle button.
rightEdgeSpacing
This is used to determined the space between the circle sliding button widget and the parent widget on the right end.
circleSlidingButtonIcon
This is the icon appear on the sliding button
circleSlidingButtonBackgroundColor
This is the background color of the circle sliding button when isEnable = True
circleSlidingButtonDisableBackgroundColor
Thisis the background color of the circle sliding button when isEnable = False
CircleSlideToActionButton(
width: 250,
parentBoxRadiusValue: 27,
circleSlidingButtonSize: 47,
leftEdgeSpacing: 3,
initialSlidingActionLabel: 'Add To Basket',
finalSlidingActionLabel: 'Added To Basket',
circleSlidingButtonIcon: const Icon(
Icons.add_shopping_cart,
color: Colors.orange,
),
parentBoxBackgroundColor: Colors.orange,
parentBoxDisableBackgroundColor: Colors.grey,
/* parentBoxGradientBackgroundColor:
LinearGradient(colors: [Colors.red, Colors.white]),
parentBoxDisableGradientBackgroundColor:
LinearGradient(colors: [Colors.red, Colors.white]),*/
circleSlidingButtonBackgroundColor: Colors.white,
isEnable: true,
onSlideActionCompleted: () {
print("Sliding action completed");
},
onSlideActionCanceled: () {
print("Sliding action cancelled");
},
),
copied to clipboard
SquareSlidingActionButton #
Parameters
Description
squareSlidingButtonSize
This is the width and height of the square(draggable) button
squareSlidingButtonRadiusValue
This is the double value for the BorderRadius.circular() attribute on the square button
leftEdgeSpacing
This is used to align the left side of square button.
rightEdgeSpacing
This is used to determined the space between the square sliding button widget and the parent widget on the right end.
squareSlidingButtonIcon
This is the icon appear on the sliding button
squareSlidingButtonBackgroundColor
This is the background color of the square sliding button when isEnable = True
squareSlidingButtonDisableBackgroundColor
Thisis the background color of the square sliding button when isEnable = False
SquareSlideToActionButton(
width: 250,
parentBoxRadiusValue: 15,
initialSlidingActionLabel: 'Add To Basket',
finalSlidingActionLabel: 'Added To Basket',
squareSlidingButtonSize: 50,
squareSlidingButtonIcon: const Icon(
Icons.add_shopping_cart,
color: Colors.orange,
),
squareSlidingButtonBackgroundColor: Colors.white,
parentBoxGradientBackgroundColor: LinearGradient(
colors: [Colors.orange, Colors.grey.withOpacity(0.5)]),
parentBoxDisableGradientBackgroundColor: LinearGradient(colors: [
Colors.grey,
]),
leftEdgeSpacing: 2,
rightEdgeSpacing: 4,
onSlideActionCompleted: () {
print("Sliding action completed");
},
onSlideActionCanceled: () {
print("Sliding action cancelled");
},
);
copied to clipboard
Additional information #
New features are coming!
Thank you for your interest in my package. If you have any feedback, found a bug or need something that is missing feel free to create an issue in the following link.
https://github.com/r1n1os/sliding_action_button/issues
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.