FLUTTER ECOSYSTEM

davidsdearaujo/animated_card

어떤 위젯의 초기화를 애니메이션 처리할 수 있는 패키지이며, 사용자 정의 제거 가능한 항목을 사용할 수 있습니다.

animated_card 프로젝트 이미지
Stars
15
Forks
3
최근 푸시(UTC)
2021. 4. 16.
프로젝트 상태
활성
David Araujo GitHub avatar
GITHUB User

David Araujo ↗

Front End Developer at Autonation | Flutter Google Mentor | Flutterando Founder

Autonation
언어C++DartCMakeHTMLObjective-CCSwiftJavaKotlin

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

animated_card

Package to animate the initialization of any widget, with the possibility of using a custom dismissible.

https://github.com/davidsdearaujo/animated_card/raw/master/example.gif https://github.com/davidsdearaujo/animated_card/raw/master/example2.gif

How to use

pubspec.yaml

To Flutter Version <= 1.22.6

  animated_card: 1.0.0+8<lastest version>

To Flutter Version >= 2.0.0

  animated_card: <lastest version>

import

import 'package:animated_card/animated_card.dart';

Simple implementation

AnimatedCard(
    child: <Widget>,
),

Dismissible implementation

AnimatedCard(
    direction: AnimatedCardDirection.left, //Initial animation direction 
    initDelay: Duration(milliseconds: 0), //Delay to initial animation
    duration: Duration(seconds: 1), //Initial animation duration
    onRemove: () => lista.removeAt(index), //Implement this action to active dismiss
),

Example

Getting Started

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.