Forms
You can customize the look and feel of the elements like text, background color, placeholder text, etc., available in the forms that you use to get the details of the mobile app user.
Description:
Key | Description |
siq_forms_backgroundcolor | Color of the background of the form |
siq_forms_toolbar_backgroundcolor | Color of the toolbar |
siq_forms_inputfield_title_textcolor | Color of the label text |
siq_forms_inputfield_textcolor | Color of the input text |
siq_forms_outlineboxcolor | The stroke color of the outline box |
siq_forms_errorcolor | Color of the stroke of the box view in error state |
siq_forms_submitbutton_textcolor | Color of "SUBMIT" text |
siq_forms_submitbutton_backgroundcolor | Color of the layout around submit text |
siq_forms_campaign_checkbox_textcolor | Color of the text in the campaign checkbox |
Sample Code:
Copied<item name="siq_forms_backgroundcolor">?attr/siq_backgroundcolor</item>
<item name="siq_forms_toolbar_backgroundcolor">?attr/colorPrimary</item>
<item name="siq_forms_inputfield_title_textcolor"> ?android:attr/textColorPrimary</item>
<item name="siq_forms_inputfield_textcolor"> ?android:attr/textColorPrimary</item>
<item name="siq_forms_errorcolor"> @color/error_color</item>
<item name="siq_forms_outlineboxcolor"> #51191919</item>
<item name="siq_forms_submitbutton_textcolor"> @color/black</item>
<item name="siq_forms_submitbutton_backgroundcolor"> ?attr/colorAccent</item>
<item name="siq_forms_campaign_checkbox_textcolor"> ?android:attr/textColorPrimary</item>