Answers for "add corner radius ios button"

0

ios rounded button

button.layer.cornerRadius = button.frame.size.height / 2
// must be in the viewDidLoad func
Posted by: Guest on April-11-2020
0

how to add corner radius in android button

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/primary" />
    <corners android:radius="5dp" />
</shape>
Posted by: Guest on September-26-2020

Code answers related to "add corner radius ios button"

Code answers related to "Swift"

Browse Popular Code Answers by Language