CNButtonTheme constructor

const CNButtonTheme({
  1. Color? tint,
  2. Color? labelColor,
  3. Color? iconColor,
  4. Color? backgroundColor,
  5. CNButtonGlassMaterial glassMaterial = CNButtonGlassMaterial.regular,
  6. TextStyle? labelStyle,
})

Creates a button theme.

Implementation

const CNButtonTheme({
  this.tint,
  this.labelColor,
  this.iconColor,
  this.backgroundColor,
  this.glassMaterial = CNButtonGlassMaterial.regular,
  this.labelStyle,
});