All Projects → WosLovesLife → flutter_flip_view

WosLovesLife / flutter_flip_view

Licence: BSD-2-Clause license
No description or website provided.

Programming Languages

dart
5743 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to flutter flip view

Fltk Rs
Rust bindings for the FLTK GUI library.
Stars: ✭ 241 (+330.36%)
Mutual labels:  widgets
JS HTML Widgets
Easily create widget objects of arbitrary complexity
Stars: ✭ 16 (-71.43%)
Mutual labels:  widgets
dart-tags
ID3 Tag parser written on the pure dart language.
Stars: ✭ 35 (-37.5%)
Mutual labels:  dart2
DismissibleExpandedList
A Flutter package to display hierarchical data in the form of list as well as allows to swipe the individual tiles.
Stars: ✭ 29 (-48.21%)
Mutual labels:  dart2
WhatsAppUIClone
WhatsApp UI Clone with Flutter
Stars: ✭ 66 (+17.86%)
Mutual labels:  dart2
tk tools
Python tkinter tools, Python3.7+
Stars: ✭ 86 (+53.57%)
Mutual labels:  widgets
Angular Instantsearch
⚡️Lightning-fast search for Angular apps, by Algolia
Stars: ✭ 219 (+291.07%)
Mutual labels:  widgets
flutter-app
Full Feature Todos Flutter Mobile app with fireStore integration.
Stars: ✭ 138 (+146.43%)
Mutual labels:  dart2
jinja.dart
Jinja2 template engine port for Dart.
Stars: ✭ 38 (-32.14%)
Mutual labels:  dart2
notion widgets
A set of HTML widgets that could be embedded into Notion.so https://www.notion.so/ pages. For more see https://blog.shorouk.dev/notion-widgets-gallery/
Stars: ✭ 270 (+382.14%)
Mutual labels:  widgets
flutter sliding tutorial
User onboarding library with smooth animation of objects and background colors
Stars: ✭ 127 (+126.79%)
Mutual labels:  dart2
actors
Actor Model library for Dart.
Stars: ✭ 40 (-28.57%)
Mutual labels:  dart2
home-dashboard
🏡 A dashboard with useful information to display in my house. It runs on an Android tablet 24/7, stuck to my fridge using magnets.
Stars: ✭ 17 (-69.64%)
Mutual labels:  widgets
PolishAnnoyanceFilters
Polskie Filtry Elementów Irytujących ukrywają i blokują wyskakujące okienka, widgety, newslettery, powiadomienia push, strzałki, niezgodne z tematem artykułów otagowane linki wewnętrzne i inne drażniące elementy (Polskie Filtry RODO-Ciasteczkowe są już w nich zawarte).
Stars: ✭ 45 (-19.64%)
Mutual labels:  widgets
cumulocity-migration-tool
A Cumulocity webapp to migrate applications, dashboards, groups, devices, simulators, smart rules, images, and managed objects between tenants. Developed by Global Presales.
Stars: ✭ 15 (-73.21%)
Mutual labels:  widgets
Instantsearch.js
⚡️ A JavaScript library for building performant and instant search experiences with Algolia.
Stars: ✭ 2,799 (+4898.21%)
Mutual labels:  widgets
php btc exchange
One of the our previous bitcoin exchanges.
Stars: ✭ 21 (-62.5%)
Mutual labels:  widgets
Graphics32 RBC
Graphics Extension that extend of Graphics32 Library for Delphi XE6 and up (and maybe Lazarus) by Uğur PARLAYAN
Stars: ✭ 32 (-42.86%)
Mutual labels:  widgets
phosphor-android
An elegant and sophisticated line icon pack to declutter your home screen.
Stars: ✭ 27 (-51.79%)
Mutual labels:  widgets
pyqt5-custom-widgets
More useful widgets for PyQt5
Stars: ✭ 199 (+255.36%)
Mutual labels:  widgets

flutter_flip_view

This is a flutter Widget base on pure Dart code that provides 3D flip card visuals.

simplecard

customlayout

Usage

add package in your pubspec.yaml

dependencies:
   flutter_flip_view: ^latest_version

This is a simple usage

import 'package:flutter_flip_view/flutter_flip_view.dart';

FlipView(
  animationController: _curvedAnimation,
  front: Container(
    width: 300,
    height: 500,
    color: Colors.amber,
    alignment: Alignment.center,
    child: Text('Front'),
  ),
  back: Container(
    width: 300,
    height: 500,
    color: Colors.blueGrey,
    alignment: Alignment.center,
    child: Text('Back'),
  ),
)

You can get more usage case in main.dart and custom_layout_example.dart

Pay attention

If the widgets you are using within the flip_view are wrapped in a Card widget or a Material widget, you should set the Card (or Material) property clipBehavior to Clip.hardEdge or something other than Clip.none.

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].