mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-18 15:15:25 +00:00
[1/2] rounded corners in alert dialogs
This commit is contained in:
parent
a4cefb33ef
commit
05ad2ed0f1
2 changed files with 10 additions and 0 deletions
5
app/src/main/res/drawable/dialog_corner.xml
Normal file
5
app/src/main/res/drawable/dialog_corner.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/card_background"/>
|
||||
<corners android:radius="24dp"/>
|
||||
</shape>
|
5
app/src/main/res/drawable/dialog_corner_dark.xml
Normal file
5
app/src/main/res/drawable/dialog_corner_dark.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/card_background_dark"/>
|
||||
<corners android:radius="24dp"/>
|
||||
</shape>
|
Loading…
Add table
Add a link
Reference in a new issue