Skip to content
Ivan Galkin edited this page Jan 1, 2024 · 1 revision

FPCCounterBadge

Badge content of notifications counter with solid background color.
Example of using a ready-made component:

FPCPrimaryCounterBadge(
  count: count,
  child: const Child(),
),

FPCGradientCounterBadge

Badge content of notifications counter with gradient background color.
Example of using a ready-made component:

FPCPrimaryGradientCounterBadge(
  count: count,
  child: const Child(),
),

FPCDotBadge

Badge content of dot container with solid background color.
Example of using a ready-made component:

FPCDotBadge(
  isShow: isShow,
  child: const Child(),
),

FPCGradientDotBadge

Badge content of dot container with gradient background color.
Example of using a ready-made component:

FPCPrimaryGradientDotBadge(
  isShow: isShow,
  child: const Child(),
),

Clone this wiki locally