customStyle property

String? customStyle
getter/setter pair

Define your custom app style to change the primary color of the SDK.

To customize, create a style.xml resource file in your app and add this style fragment to it, replacing the values inside the placeholders:

<resources>
  <style name={style_name} parent={parent_name}>
    <item name="colorPrimary">{custom_color_hex}</item>
  </style>
</resources>

Implementation

String? customStyle;