All Projects → material-motion → Material Motion Android

material-motion / Material Motion Android

Licence: apache-2.0
Reactive motion for Android. Deprecated; please use the Motion library in Material Components for Android instead: https://material.io/develop/android/theming/motion/.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Material Motion Android

Material Motion Swift
A toolkit for building responsive motion using Core Animation.
Stars: ✭ 1,417 (+208.71%)
Mutual labels:  reactive, motion
Pokedex
🗡️ Android Pokedex using Hilt, Motion, Coroutines, Flow, Jetpack (Room, ViewModel) based on MVVM architecture.
Stars: ✭ 4,882 (+963.62%)
Mutual labels:  motion
Vue Motion
Easy and natural state transitions
Stars: ✭ 373 (-18.74%)
Mutual labels:  motion
Cloe
Cloe programming language
Stars: ✭ 398 (-13.29%)
Mutual labels:  reactive
Popmotion
Simple animation libraries for delightful user interfaces
Stars: ✭ 18,656 (+3964.49%)
Mutual labels:  motion
Vidom
Library to build UI based on virtual DOM
Stars: ✭ 408 (-11.11%)
Mutual labels:  reactive
Rxjava2 Jdbc
RxJava2 integration with JDBC including Non-blocking Connection Pools
Stars: ✭ 360 (-21.57%)
Mutual labels:  reactive
Shiny
Easy interactive web applications with R
Stars: ✭ 4,507 (+881.92%)
Mutual labels:  reactive
Shop.js
🛍️ Ecommerce UI components and framework powered by React.
Stars: ✭ 423 (-7.84%)
Mutual labels:  reactive
Rxpy
Reactive Extensions for Python, https://rxpy.rtfd.io
Stars: ✭ 4,086 (+790.2%)
Mutual labels:  reactive
Lettuce Core
Advanced Java Redis client for thread-safe sync, async, and reactive usage. Supports Cluster, Sentinel, Pipelining, and codecs.
Stars: ✭ 4,319 (+840.96%)
Mutual labels:  reactive
Motionmachine
A powerful, elegant, and modular animation library for Swift.
Stars: ✭ 380 (-17.21%)
Mutual labels:  motion
R2dbc Mysql
R2DBC MySQL Implementation
Stars: ✭ 417 (-9.15%)
Mutual labels:  reactive
Outwatch
A purely functional and reactive UI framework
Stars: ✭ 376 (-18.08%)
Mutual labels:  reactive
Ant Motion
🚴 Animate specification and components of Ant Design
Stars: ✭ 4,294 (+835.51%)
Mutual labels:  motion
Akka Grpc
Akka gRPC
Stars: ✭ 361 (-21.35%)
Mutual labels:  reactive
Akka.net
Port of Akka actors for .NET
Stars: ✭ 4,024 (+776.69%)
Mutual labels:  reactive
Moving Letters
Text animated with anime.js
Stars: ✭ 408 (-11.11%)
Mutual labels:  motion
Rxswift
Reactive Programming in Swift
Stars: ✭ 21,163 (+4510.68%)
Mutual labels:  reactive
Find3
High-precision indoor positioning framework, version 3.
Stars: ✭ 4,256 (+827.23%)
Mutual labels:  motion

Material Motion for Android

Build Status codecov Release Docs Chat

The Material Motion for Android repo.

Learn more about the APIs defined in the library by reading our technical documentation and our Starmap.

Note: This repo is deprecated. Please use the Motion library in Material Components for Android instead: https://material.io/develop/android/theming/motion/.

Installation

Installation with Jitpack

Add the Jitpack repository to your project's build.gradle:

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

Depend on the latest version of the library. Take care to occasionally check for updates.

dependencies {
    compile 'com.github.material-motion:material-motion-android:1.0.0'
}

For more information regarding versioning, see:

Enable Java 8 language features.

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

Note: You must use Android Studio 2.4 Preview 4 or newer.

Using the files from a folder local to the machine

You can have a copy of this library with local changes and test it in tandem with its client project. To add a local dependency on this library, add this library's identifier to your project's local.dependencies:

com.github.material-motion:material-motion-android

Because local.dependencies is never to be checked into Version Control Systems, you must also ensure that any local dependencies are also defined in build.gradle as explained in the previous section.

Important

For each local dependency listed, you must run gradle install from its project root every time you make a change to it. That command will publish your latest changes to the local maven repository. If your local dependencies have local dependencies of their own, you must gradle install them as well.

You must gradle clean your project every time you add or remove a local dependency.

Usage

How to use the library in your project.

Editing the library in Android Studio

Open Android Studio, choose File > New > Import Project..., choose the root build.gradle file.

Example apps/unit tests

To build the sample application, run the following commands:

git clone https://github.com/material-motion/material-motion-android.git
cd material-motion-android
gradle installDebug

To run all unit tests, run the following commands:

git clone https://github.com/material-motion/material-motion-android.git
cd material-motion-android
gradle test

Guides

  1. Architecture
  2. How to ...

Architecture

How to ...

Contributing

We welcome contributions!

Check out our upcoming milestones.

Learn more about our team, our community, and our contributor essentials.

License

Licensed under the Apache 2.0 license. See LICENSE for details.

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].