Files
watrbx-game-engine/Android/NativeShell/res/drawable/tab_indicator_green.xml
T
2025-09-18 17:55:52 -04:00

14 lines
665 B
XML

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- SELECTED TAB STATE -->
<item android:state_selected="true" android:state_pressed="false">
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Bottom indicator color for the SELECTED tab state -->
<item android:top="-5dp" android:left="-5dp" android:right="-5dp">
<shape android:shape="rectangle">
<stroke android:color="@color/RbxGreen1" android:width="4dp"/>
</shape>
</item>
</layer-list>
</item>
</selector>