This is an example project of using KWidget on an android application.
Easy use form widget components with material design which contains from KEditText and KSpinner
maven{url 'https://repo.repsy.io/mvn/kredibel/sdk'}
dependencies {
implementation 'io.kredibel:widget:0.0.3' // Please check latest version
}
<io.kredibel.widget.KEditText
android:hint="Ketik Nama disinih.."
android:layout_width="200dp"
android:layout_height="wrap_content"/>
<io.kredibel.widget.KSpinner
android:layout_width="200dp"
android:layout_height="wrap_content"
android:entries="@array/platform"/>
You can customize color by adding the following key to your color resource xml.
<?xml version="1.0" encoding="utf-8"?>
<resources>
...
...
<color name="common_color_focused">#0169FF</color>
<color name="common_color_bg">#F3F5F8</color>
</resources>
You can customize border width by adding the following key to your dimens resource xml.
<dimen name="common_kwidget_border_width">1.5dp</dimen>