FLUTTER ECOSYSTEM

AndresR173/loading_transition_button

アニメーション遷移ボタン

loading_transition_button のプロジェクト画像
Stars
5
Forks
0
最終プッシュ(UTC)
2021/05/16
プロジェクト状態
公開中
Andres Rojas GitHub avatar
GITHUB User

Andres Rojas ↗

iOS developer, Open Source lover

Medellín, Colombia公式サイト ↗
言語DartSwiftKotlinObjective-C

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 4 件
  • flutter{"sdk":"flutter"}
  • vector_math^2.1.0
  • flutter_test開発用{"sdk":"flutter"}
  • lint開発用^1.3.1

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

Loading Transition button

https://badges.fyi/github/latest-tag/AndresR173/loading_transition_button https://badges.fyi/github/stars/AndresR173/loading_transition_button https://badges.fyi/github/license/AndresR173/loading_transition_button

A Customizable transition button for Flutter

Getting Started

To use this package, add loading_transition_button as a dependency in your pubspec.yaml file.

dependencies:
 ...
 loading_transition_button: ^0.0.1

How to use

In your project add the following import:

import  'package:loading_transition_button/loading_transition_button.dart';

In order to use this widget you have to use a LoadingButtonController to handler the different states.

final _controller = LoadingButtonController();

This widget starts a loading animation once it's tapped or by using the controller. You can the launcher to init an error animation or stop the loading animation.

LoadingButton(
    color: Colors.blue,
    onSubmit: () => print('onSubmit'),
    controller: _controller,
    errorColor: Colors.red,
    transitionDuration: Duration(seconds: 1),
    child: Text(
    'Hit me!',
    style: Theme.of(context)
        .textTheme
        .bodyText1!
        .copyWith(color: Colors.white),
    ),
),

To support the transition to a different page to have to call the moveToScreen method

_controller.moveToScreen(
    context: context,
    page: SearchPage(),
    stopAnimation: true,
    navigationCallback: (route) =>
        Navigator.of(context).push(route),
),

navigationCallback will send you a new route that you can use for different navigation method like push or replace.

LoadingTransitionButton

AnimatedButton