Skip to content

Commit

Permalink
Onboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaji Khan committed Mar 27, 2024
1 parent 4042b42 commit 75e62d3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions app/src/main/res/drawable/almost_trans.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<solid android:color="#ccffffff" />

<corners android:radius="16dip" />

<stroke
android:width="1dp"
android:color="@android:color/transparent" />

</shape>
8 changes: 4 additions & 4 deletions app/src/main/res/layout/activity_onboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@

<Button
android:id="@+id/onboard_prev"
android:background="@drawable/semi_trans"
android:background="@drawable/almost_trans"
android:clickable="true"
android:layout_margin="30dp"
android:layout_width="wrap_content"
Expand All @@ -271,7 +271,7 @@
android:drawableLeft="@drawable/ic_baseline_arrow_back_ios_new_24" />

<Button
android:background="@drawable/semi_trans"
android:background="@drawable/almost_trans"
android:id="@+id/onboard_skip"
android:clickable="true"
android:layout_margin="30dp"
Expand All @@ -283,7 +283,7 @@
android:text="Skip"/>

<Button
android:background="@drawable/semi_trans"
android:background="@drawable/almost_trans"
android:id="@+id/onboard_next"
android:clickable="true"
android:layout_margin="30dp"
Expand All @@ -296,7 +296,7 @@
android:drawableRight="@drawable/ic_baseline_arrow_forward_ios_24" />

<Button
android:background="@drawable/semi_trans"
android:background="@drawable/almost_trans"
android:id="@+id/onboard_finish"
android:clickable="true"
android:layout_margin="30dp"
Expand Down

0 comments on commit 75e62d3

Please sign in to comment.