This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| snackbarConstraintLayout.prepareTransition { | |
| moveResize { // Move resize uses ChangeBounds | |
| +fab | |
| } | |
| slide { | |
| +snackbarMessage | |
| } | |
| decelerateEasing() | |
| } | |
| snackbarMessage.toggleGone() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| constraintLayout.prepareTransition { | |
| auto { | |
| standardEasing() | |
| exclude(metamorphosisDesc2) | |
| } | |
| transitionSet { | |
| fade() | |
| slide() | |
| accelerateEasing() | |
| +metamorphosisDesc2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <transitionSet xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:transitionOrdering="sequential"> | |
| <changeBounds> | |
| <targets> | |
| <target android:targetId="@+id/image" /> | |
| </targets> | |
| </changeBounds> | |
| <fade> | |
| <targets> | |
| <target android:targetId="@+id/text" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="import" href="../core-menu/core-submenu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; |
NewerOlder