Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a8f0662 authored by Narinder Rana's avatar Narinder Rana Committed by Aayush Gupta
Browse files

ExactCalculator: Implement /e/ UI-SDK

Change-Id: I3dbe567ce5fddb0907704e18ce8b2f2848028f2b
parent c3602a56
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -36,5 +36,6 @@ android_app {
        "androidx.legacy_legacy-support-v4",
        "androidx.gridlayout_gridlayout",
        "androidx.recyclerview_recyclerview",
        "androidx.webkit_webkit"
    ],
}
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="oval"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/calculator_accent_color"/>
    <size android:width="8dp" android:height="8dp"/>
</shape>
+11 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="oval">
            <solid android:color="@color/calculator_accent_color"/>
            <stroke android:color="@color/calculator_accent_color" android:width="5dp"/>
            <!-- Set the same value for both width and height to get a circular shape -->
            <size android:width="40dp" android:height="40dp"/>
        </shape>
    </item>
</selector>
+3 −1
Original line number Diff line number Diff line
@@ -19,7 +19,9 @@
    android:height="24dp"
    android:width="24dp"
    android:viewportHeight="24"
    android:viewportWidth="24">
    android:viewportWidth="24"
    android:tint="@color/calculator_accent_color"
    >
    <path
        android:fillColor="@color/pad_button_text_color"
        android:pathData="M19,15.59L17.59,17L14,13.41L10.41,17L9,15.59L12.59,12L9,8.41
+5 −0
Original line number Diff line number Diff line
@@ -25,6 +25,11 @@
        layout="@layout/display"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <View
        android:background="@color/calculator_accent_color"
        android:layout_width="match_parent"
        android:layout_height="1dp"/>


    <LinearLayout
        android:layout_width="match_parent"
Loading