FLUTTER ECOSYSTEM

davidsdearaujo/animated_card

किसी भी विजेट के प्रारंभ को एनीमेट करने के लिए पैकेज, और कस्टम डिस्मिसिबल का उपयोग करने की संभावना है।

animated_card प्रोजेक्ट कवर
Stars
15
Forks
3
अंतिम पुश (UTC)
16 अप्रैल 2021
प्रोजेक्ट स्थिति
सक्रिय
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.