v2.1.0rounded_loading_button
Flutter用のシンプルなアニメーションロードボタンウィジェットの実装
539いいね 80030日間ダウンロード60Pub ポイント
プラットフォーム情報なし
Flutter用のシンプルなアニメーションロードボタンウィジェットの実装
{"sdk":"flutter"}>=0.26.0 <0.28.0{"sdk":"flutter"}^1.3.1以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
pub package build codecov style: effective dart License: MIT Awesome Flutter
RoundedLoadingButton is a Flutter package with a simple implementation of an animated loading button, complete with success and error animations.
https://raw.githubusercontent.com/chrisedg87/flutter_rounded_loading_button/HEAD/screenshots/loading-button.gif
Add this to your pubspec.yaml:
dependencies:
rounded_loading_button: ^2.0.8
import 'package:rounded_loading_button/rounded_loading_button.dart';
final RoundedLoadingButtonController _btnController = RoundedLoadingButtonController();
void _doSomething() async {
Timer(Duration(seconds: 3), () {
_btnController.success();
});
}
RoundedLoadingButton(
child: Text('Tap me!', style: TextStyle(color: Colors.white)),
controller: _btnController,
onPressed: _doSomething,
)
The Rounded Loading Button has many configurable properties, including:
duration - The duration of the button animationloaderSize - The size of the CircularProgressIndicatoranimateOnTap - Whether to trigger the loading animation on the tap eventresetAfterDuration - Reset the animation after specified duration, defaults to 15 secondserrorColor - The color of the button when it is in the error statesuccessColor - The color of the button when it is in the success statesuccessIcon - The icon for the success statefailedIcon - The icon for the failed stateAll contributions are welcome!