v1.1.0slide_to_confirm
一個滑塊,當使用者將其滑動至 100% 時會觸發回呼函數。
150喜歡 1100近 30 天下載140Pub 分數
AndroidiOSWebmacOSWindowsLinux
一個滑塊,當使用者將其滑動至 100% 時會觸發回呼函數。
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
A customizable slider that will activate a callback when the user slides it to 100%.
In the dependencies: section of your pubspec.yaml, add the following line:
slide_to_confirm: <latest_version>
import 'package:slide_to_confirm/slide_to_confirm.dart';
class MyWidget extends StatelessWidget {
void confirmed(){
print('Slider confirmed!');
}
Widget build(BuildContext context) {
return ConfirmationSlider(
onConfirmation: () => confirmed(),
);
}
}
double: Height of the slider. Defaults to 70.double: Width of the slider. Defaults to 300.Color: The color of the background of the slider. Defaults to Colors.white.Color: The color of the background of the slider when it has been slide to the end. By giving a value here, the background color will gradually change from backgroundColor to backgroundColorEnd when the user slides. Is not used by default.Color: The color of the moving element of the slider. Defaults to Colors.blueAccent.Color: The color of the icon on the moving element if icon is IconData. Defaults to Colors.white.Widget or : The icon widget used on the moving element of the slider. Defaults to Icon(Icons.chevron_right).BoxShadow: The shadow below the slider. Defaults to BoxShadow(color: Colors.black38, offset: Offset(0, 2),blurRadius: 2,spreadRadius: 0,).String: The text showed below the foreground. Used to specify the functionality to the user. Defaults to "Slide to confirm".TextStyle: The style of the text. Defaults to TextStyle(color: Colors.black26, fontWeight: FontWeight.bold,).VoidCallback: The callback when slider is completed. This is the only required field.VoidCallback: The callback when slider is pressed.VoidCallback: The callback when slider is release.BorderRadius: The shape of the foreground (the moving element of the slider). Defaults to a circular border radius.BorderRadius: The shape of the background of the slider. Defaults to a circular border radius.bool: Bool that indicates if stick or not the cursor at end of slideView the Flutter app in the example directory to see a working example of how to use and implement the slider.
Slider Gif
Slider Gif
Slider Gif
Slider Gif
Slider Gif