Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. gradient-white
  2. <shape
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:shape="rectangle">
  5. <gradient
  6. android:startColor="@color/gradFirstGrey"
  7. android:centerColor="@color/gradMidGrey"
  8. android:endColor="@color/gradLastGrey"
  9. android:angle="270" />
  10. </shape>
  11. gradient-blue
  12. <shape
  13. xmlns:android="http://schemas.android.com/apk/res/android"
  14. android:shape="rectangle">
  15. <gradient
  16. android:startColor="@color/colorPrimary"
  17. android:centerColor="@color/colorPrimaryDark"
  18. android:endColor="@color/gradMidBlue"
  19. android:angle="270" />
  20. </shape>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement