> For the complete documentation index, see [llms.txt](https://docs.firework.com/firework-for-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.firework.com/firework-for-developers/flutter-sdk/integration-guide-v2/android-style.md).

# Android Style (Flutter)

Currently, some styles can't be configured through Dart codes on the Android side. But these styles can be configured through `res/values/styles.xml`, as shown below.

```xml
    <!--Configure the style for the shopping cta button-->
    <style name="FwShoppingCtaButtonStyle" parent="FwShoppingCtaButtonParentStyle">
        <item name="android:backgroundTint">@color/fw_shopping__add_to_cart_btn</item>
        <item name="android:textColor">@color/fw__gnt_white</item>
        <item name="android:textSize">@dimen/fw__font_size_16</item>
    </style>

    <!--Configure the style for the player cta button-->
    <style name="FwCtaButtonStyle" parent="FwCtaButtonViewParentStyle">
        <item name="android:backgroundTint">@color/fw_cta_bg_bluelake</item>
        <item name="android:textColor">@color/white</item>
        <item name="android:fontFamily">sans-serif</item>
    </style>
```
