Shopping configurations (Flutter)
Customize product info view
Create a configuration for shopping CTA button
final shoppingCTAConfiguration = ShoppingCTAButtonConfiguration(
// The text of shopping CTA button: "Shop now" or "Add to card"
text: ShoppingCTAButtonText.shopNow,
// The text color of CTA button
// Only supported on iOS
textColor: "#000000",
// The background color of CTA button
// Only supported on iOS
backgroundColor: "#c0c0c0",
// The text color of CTA button
// Only supported on iOS
fontSize: 16,
// iOS font info
iOSFontInfo: IOSFontInfo(
fontName: "Helvetica",
systemFontStyle: IOSSystemFontStyle.italic,
systemFontWeight: IOSSystemFontWeight.heavy,
),
);Create a configuration for Firework PDP link button
Create a configuration for video product card
Apply configurations
Show cart icon
Show the red indicator on the cart icon
PreviousPlayer configurations (Flutter)NextCustomize product card on videos using the custom view (Flutter)
Last updated
Was this helpful?