mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-29 07:11:03 +00:00
feat: add calculator to app
This commit is contained in:
9
app/src/main/res/drawable/rounded_bottom_corners.xml
Normal file
9
app/src/main/res/drawable/rounded_bottom_corners.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="?attr/colorSurfaceVariant" />
|
||||
<corners
|
||||
android:topLeftRadius="0dp"
|
||||
android:topRightRadius="0dp"
|
||||
android:bottomLeftRadius="16dp"
|
||||
android:bottomRightRadius="16dp" />
|
||||
</shape>
|
||||
9
app/src/main/res/drawable/rounded_top_corners.xml
Normal file
9
app/src/main/res/drawable/rounded_top_corners.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="?attr/colorSurfaceVariant" />
|
||||
<corners
|
||||
android:topLeftRadius="16dp"
|
||||
android:topRightRadius="16dp"
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp" />
|
||||
</shape>
|
||||
Reference in New Issue
Block a user