-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #502 from mysteriumnetwork/feature/Dark-mode
Added dark mode
- Loading branch information
Showing
12 changed files
with
66 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
9 changes: 9 additions & 0 deletions
9
android/app/src/main/res/drawable-night/icon_currency_dropdown.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="10dp" | ||
android:height="8dp" | ||
android:viewportWidth="10" | ||
android:viewportHeight="8"> | ||
<path | ||
android:pathData="M4.2235,7.0378C4.6237,7.533 5.3787,7.533 5.7789,7.0378L9.747,2.1286C10.2756,1.4747 9.8101,0.5 8.9693,0.5H1.0331C0.1923,0.5 -0.2732,1.4747 0.2554,2.1286L4.2235,7.0378Z" | ||
android:fillColor="#ffffff"/> | ||
</vector> |
5 changes: 5 additions & 0 deletions
5
android/app/src/main/res/drawable-night/shape_payment_button_disable.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<corners android:radius="100dp" /> | ||
<solid android:color="@color/card_payment_background" /> | ||
</shape> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="10dp" | ||
android:height="8dp" | ||
android:viewportWidth="10" | ||
android:viewportHeight="8"> | ||
<path | ||
android:pathData="M4.2235,7.0378C4.6237,7.533 5.3787,7.533 5.7789,7.0378L9.747,2.1286C10.2756,1.4747 9.8101,0.5 8.9693,0.5H1.0331C0.1923,0.5 -0.2732,1.4747 0.2554,2.1286L4.2235,7.0378Z" | ||
android:fillColor="#5A597D"/> | ||
</vector> |
6 changes: 6 additions & 0 deletions
6
android/app/src/main/res/drawable/payment_button_background.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:drawable="@drawable/shape_primary_button_tapped" android:state_pressed="true" /> | ||
<item android:drawable="@drawable/shape_payment_button_disable" android:state_enabled="false" /> | ||
<item android:drawable="@drawable/shape_primary_button" /> | ||
</selector> |
5 changes: 5 additions & 0 deletions
5
android/app/src/main/res/drawable/shape_payment_button_disable.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<corners android:radius="100dp" /> | ||
<solid android:color="@color/top_up_unselected_state" /> | ||
</shape> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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