Modul 03 - Aplikasi DTS x PENS
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.0.0-rc01'<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- pressed -->
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#1e7cba" />
<corners android:radius="5dp" />
</shape>
</item>
<item android:state_pressed="false">
<shape android:shape="rectangle">
<solid android:color="#2eabff" />
<corners android:radius="5dp" />
</shape>
</item>
<!-- default -->
</selector>