All Projects → ThomasEcalle → bouncing_widget

ThomasEcalle / bouncing_widget

Licence: MIT license
A widget that enables you to add a bouncing animation on a widget.

Programming Languages

dart
5743 projects
HTML
75241 projects
swift
15916 projects

Projects that are alternatives of or similar to bouncing widget

route transitions
A flutter library containing useful animations and friendly functions for routing 🚦
Stars: ✭ 43 (+26.47%)
Mutual labels:  flutter-animation, flutter-package
flutter bottom reveal
An animated bottom reveal widget
Stars: ✭ 15 (-55.88%)
Mutual labels:  flutter-animation, flutter-package
Flutter-Custom-Carousel
Flutter Custom Carousel Application Design and Animation - day 18
Stars: ✭ 44 (+29.41%)
Mutual labels:  flutter-animation, flutter-package
Flutter-Chat-Bar
Link to the package -. https://pub.dartlang.org/packages/flutter_chat_bar
Stars: ✭ 39 (+14.71%)
Mutual labels:  flutter-animation, flutter-package
dartssh2
SSH and SFTP client written in pure Dart, aiming to be feature-rich as well as easy to use.
Stars: ✭ 63 (+85.29%)
Mutual labels:  flutter-package
survey kit
Flutter library to create beautiful surveys (aligned with ResearchKit on iOS)
Stars: ✭ 68 (+100%)
Mutual labels:  flutter-package
Flutter-Floating-Menu
A new Flutter package which helps developers in creating Floating Menu.
Stars: ✭ 37 (+8.82%)
Mutual labels:  flutter-package
buttons tabbar
A Flutter package that implements a TabBar where each label is a toggle button.
Stars: ✭ 49 (+44.12%)
Mutual labels:  flutter-package
CustomSwitch
Custom Switch package created in Flutter
Stars: ✭ 56 (+64.71%)
Mutual labels:  flutter-package
Flutter-Photography-Application
Flutter Photography Application Design and Animation - day 22
Stars: ✭ 73 (+114.71%)
Mutual labels:  flutter-animation
getx snippets extension
An extension to accelerate the process of developing applications with flutter, aimed at everyone using the GetX package.
Stars: ✭ 142 (+317.65%)
Mutual labels:  flutter-package
Flutter-ripple-map-application
Flutter Ripple Animation in a Map Application UI/UX design - day 5
Stars: ✭ 29 (-14.71%)
Mutual labels:  flutter-animation
sweetalert
sweetalert for flutter
Stars: ✭ 52 (+52.94%)
Mutual labels:  flutter-package
swipedetector
A Flutter package to detect up, down, left, right swipes.
Stars: ✭ 34 (+0%)
Mutual labels:  flutter-package
IQPlayer
Simple video player with subtitle for flutter.
Stars: ✭ 16 (-52.94%)
Mutual labels:  flutter-package
flex color scheme
A Flutter package to make and use beautiful color scheme based themes.
Stars: ✭ 370 (+988.24%)
Mutual labels:  flutter-package
change app package name
Change App Package Name with single command. It makes the process very easy and fast.
Stars: ✭ 72 (+111.76%)
Mutual labels:  flutter-package
sliding panel
A Flutter slidable widget that provides an easy to use configuration. Highly customisable. Just as you want it!
Stars: ✭ 88 (+158.82%)
Mutual labels:  flutter-package
shimmer animation
This shimmer animation widget can help you bring simple yet beautiful skeleton loaders to your flutter app with ease.
Stars: ✭ 29 (-14.71%)
Mutual labels:  flutter-package
Interactive-Add-Button-Layout
Custom Layout with interactive add button to impove your UI and UX .
Stars: ✭ 20 (-41.18%)
Mutual labels:  flutter-package

bouncing_widget

A widget that enables you to add a bouncing animation on a widget.

Example

How does it work ?

You just have to encapsulate the widget of your choice with a BouncingWidget.

You may also use a scaleFactor to customize the scaling effect as in the gif example. Or even customize the animation's duration with the duration parameter (200 milliseconds by default).

BouncingWidget(
  duration: Duration(milliseconds: 100),
  scaleFactor: 1.5,
  onPressed: () {
    print("onPressed");
  },
  child: Text(
    "Hello !",
    style: TextStyle(
      color: Colors.white,
      fontWeight: FontWeight.bold,
      fontSize: 35,
    ),
  ),
),
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].