diff options
author | cyberta <cyberta@riseup.net> | 2023-07-29 17:15:05 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2023-07-29 18:01:14 +0200 |
commit | addf8d89962bf3de6d70330f9264d0e4d866613e (patch) | |
tree | cd83f186d1aa77e919fe5cc198532132d12c8312 /app/src/main/res/drawable | |
parent | a27fc2100f1aa826843c3fd61313d3e5858c23ca (diff) |
update design and UX for provider setup
Diffstat (limited to 'app/src/main/res/drawable')
-rw-r--r-- | app/src/main/res/drawable/ic_arrow_forward.png | bin | 0 -> 462 bytes | |||
-rw-r--r-- | app/src/main/res/drawable/progress_spinner.xml | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/ic_arrow_forward.png b/app/src/main/res/drawable/ic_arrow_forward.png Binary files differnew file mode 100644 index 00000000..2b45341c --- /dev/null +++ b/app/src/main/res/drawable/ic_arrow_forward.png diff --git a/app/src/main/res/drawable/progress_spinner.xml b/app/src/main/res/drawable/progress_spinner.xml new file mode 100644 index 00000000..ae2c4f69 --- /dev/null +++ b/app/src/main/res/drawable/progress_spinner.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:left="-25dp" + android:right="-25dp" + android:top="-10dp" + android:bottom="-10dp" + > + <animated-rotate + android:drawable="@drawable/rotate_progress_image" + android:pivotX="50.0%" + android:pivotY="50.0%" + android:fromDegrees="0.0" + android:toDegrees="360.0" + > + </animated-rotate> + </item> + <item + android:bottom="15dp" + android:top="15dp" + > + <shape android:shape="oval"> + <solid android:color="@color/white"/> + <size android:width="250dp" android:height="250dp" /> + </shape> + </item> + +</layer-list>
\ No newline at end of file |