One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # | |
| # This ProGuard configuration file illustrates how to process a program | |
| # library, such that it remains usable as a library. | |
| # Usage: | |
| # java -jar proguard.jar @library.pro | |
| # | |
| # Save the obfuscation mapping to a file, so we can de-obfuscate any stack | |
| # traces later on. Keep a fixed source file attribute and all line number | |
| # tables to get line numbers in the stack traces. |
| import android.graphics.PointF; | |
| import android.view.animation.Interpolator; | |
| /** | |
| * From https://github.com/codesoup/android-cubic-bezier-interpolator | |
| * Derived from: https://github.com/rdallasgray/bez | |
| */ | |
| public class CubicBezierInterpolator implements Interpolator { |
| package com.materialdesign.chris.materialdesignexperimenting; | |
| import android.animation.Animator; | |
| import android.animation.AnimatorListenerAdapter; | |
| import android.animation.ObjectAnimator; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.os.Handler; | |
| import android.view.View; | |
| import android.view.ViewAnimationUtils; |
| Sample uses dartpad as the REPL/IDE. See Dart tour example -- see https://dartpad.dartlang.org/c736f05fd84997783114 |