Styling
For example, you can change the Pin Bullet Size:
<TextView
android:id="@+id/input_1"
android:text="\u25CF"
style="@style/CotterPinInputBullet"
/><resources>
...
<!-- Add the following block,
change the value for `android:textColor` to `50dp`
to make the bullets bigger -->
<style name="CotterPinInputBullet">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:fontFamily">@font/akkurat_bold</item>
<item name="android:textColor">@color/colorLightGrey</item>
<item name="android:textSize">50dp</item>
<item name="android:paddingHorizontal">10dp</item>
</style>
</resources>Setting Colors and Images
Last updated