NTP-15707 | bug fix in claim journey (#13800)

This commit is contained in:
Sandeep Kumar
2024-11-26 17:34:42 +05:30
committed by GitHub
parent 0eee1bc5ef
commit 9d56b24adb
5 changed files with 16 additions and 16 deletions

View File

@@ -276,7 +276,7 @@ object Constants {
const val ANIMATE_FOOTER_SECTION_VISIBILITY = "animateFooterSectionVisibility"
const val STATUS_BAR_COLOR = "statusBarColor"
const val SOMETHING_WENT_WRONG = "Something went wrong"
const val ERROR_SUBTITLE = "It appears we are facing trouble.\\nPlease try again"
const val ERROR_SUBTITLE = "It appears we are facing trouble.\nPlease try again"
const val RETRY = "Retry"
const val ERROR_CTA = "errorCta"
const val HOME_VISIT_SCREEN = "home_visit_screen"

View File

@@ -62,7 +62,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingEnd="@dimen/dp_2"
android:buttonTint="@drawable/orange_radio_button_tint_selector"
android:buttonTint="@drawable/purple_radio_button_tint_selector"
app:layout_constraintBottom_toBottomOf="@+id/title"
app:layout_constraintStart_toStartOf="@id/leftGuide"
app:layout_constraintTop_toTopOf="@+id/title"

View File

@@ -40,7 +40,7 @@
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@drawable/orange_radio_button_tint_selector"
android:buttonTint="@drawable/purple_radio_button_tint_selector"
android:layout_marginStart="@dimen/dp_8"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"

View File

@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright © 2022 by Navi Technologies Private Limited
~ All rights reserved. Strictly confidential
~
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/ctaPrimaryColor" android:state_checked="true" android:state_enabled="true" />
<item android:color="@color/divider_color" android:state_checked="false" android:state_enabled="false" />
<item android:color="@color/divider_color" android:state_checked="false" />
</selector>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~ Copyright © 2022-2024 by Navi Technologies Limited
~ All rights reserved. Strictly confidential
~
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/purple_button_color" android:state_checked="true" android:state_enabled="true" />
<item android:color="@color/color_A8A8A8" android:state_checked="false" android:state_enabled="false" />
<item android:color="@color/color_A8A8A8" android:state_checked="false" />
</selector>