[Docs] Android roadmap: Animations & Constraints (#6853)
* [Docs] Android roadmap: Animations & Constraints * Update src/data/roadmaps/android/content/animations@Xn1VQ-xOT67ZfJJTM4r1p.md --------- Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>pull/6855/head
parent
2f7d7cbbf9
commit
b2a798e229
2 changed files with 16 additions and 0 deletions
@ -0,0 +1,8 @@ |
||||
# Animations |
||||
|
||||
`Animations` can add visual cues that notify users about what's going on in your app. They are especially useful when the UI changes state, such as when new content loads or new actions become available. Animations also add a polished look to your app, which gives it a higher quality look and feel. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@Google developers: Animations](https://developer.android.com/develop/ui/views/animations/overview) |
||||
- [@video@Google developers: Animations](https://www.youtube.com/watch?v=N_x7SV3I3P0) |
@ -0,0 +1,8 @@ |
||||
# ConstraintLayout |
||||
|
||||
Lets you create large, complex layouts with a flat view hierarchy—no nested view groups. It's similar to `RelativeLayout` in that all views are laid out according to relationships between sibling views and the parent layout, but it's more flexible than RelativeLayout and easier to use. Its available on xml and jetpack compose. |
||||
|
||||
Visit the following resources to learn more: |
||||
|
||||
- [@official@Android developers: ConstraintLayout in xml](https://developer.android.com/develop/ui/views/layout/constraint-layout) |
||||
- [@official@Android developers: ContraintLayout in compose](https://developer.android.com/develop/ui/compose/layouts/constraintlayout) |
Loading…
Reference in new issue