UI Customization
With the new version, you will be able to customize the UI of the SDK and use your own brand colors and font types. So, you can increase your users' experience.
new AppsPrizeStyleConfig(
// (Optional) primaryColor: The primary color used for UI customization. Set primary color to red.
primaryColor: Color.blue,
// (Optional) secondaryColor: The secondary color used for UI customization. Set secondary color to blue.
secondaryColor: Color.black,
// (Optional) highlightColor: The secondary color used for UI customization. Set highlight color to blue.
highlightColor: Color.green,
// (Optional) : The specific feature highlight color used for UI customization.
promotionHighlightColor: Color.blue,
cashbackHighlightColor: Color.blue,
secondChanceHighlightColor: Color.blue,
commonTaskHighlightColor: Color.blue,
epicTaskHighlightColor: Color.blue,
legendaryTaskHighlightColor: Color.blue,
// (Optional) offersTitleText: Text for the offers page title and navigation. Set offers title text.
offersTitleText: "Test Offer",
// (Optional) appsTitleText: Text for the apps page title and navigation. Set apps title text.
appsTitleText: "Test Apps"
);
Updated 8 days ago