Skip to content

Commit

Permalink
Removed bottomLeft and topLeft radius in toast layout
Browse files Browse the repository at this point in the history
  • Loading branch information
yadav-rahul committed Sep 16, 2016
1 parent 5d7e332 commit f9892c5
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
5 changes: 4 additions & 1 deletion tastytoast/src/main/res/drawable/default_toast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

<stroke android:color="#C4CDE0"></stroke>

<corners android:radius="10dp"></corners>
<corners
android:bottomRightRadius="10dp"
android:topRightRadius="10dp"></corners>


</shape>
4 changes: 3 additions & 1 deletion tastytoast/src/main/res/drawable/error_toast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

<stroke android:color="#C4CDE0"></stroke>

<corners android:radius="10dp"></corners>
<corners
android:bottomRightRadius="10dp"
android:topRightRadius="10dp"></corners>

</shape>
4 changes: 3 additions & 1 deletion tastytoast/src/main/res/drawable/info_toast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

<stroke android:color="#C4CDE0"></stroke>

<corners android:radius="10dp"></corners>
<corners
android:bottomRightRadius="10dp"
android:topRightRadius="10dp"></corners>

</shape>
4 changes: 3 additions & 1 deletion tastytoast/src/main/res/drawable/success_toast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

<stroke android:color="#C4CDE0"></stroke>

<corners android:radius="10dp"></corners>
<corners
android:bottomRightRadius="10dp"
android:topRightRadius="10dp"></corners>

</shape>
4 changes: 3 additions & 1 deletion tastytoast/src/main/res/drawable/warning_toast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

<stroke android:color="#C4CDE0"></stroke>

<corners android:radius="10dp"></corners>
<corners
android:bottomRightRadius="10dp"
android:topRightRadius="10dp"></corners>

</shape>

0 comments on commit f9892c5

Please sign in to comment.