getRightSide method

Row getRightSide(
  1. TUIThemeData theme
)

Implementation

Row getRightSide(TUIThemeData theme) {
  return Row(
    children: [
      Container(
        width: 16,
        height: 16,
        decoration: BoxDecoration(
          shape: BoxShape.circle,
          color: getBadgeColor(theme),
        ),
        child: Text(
          badgeCount != null ? badgeCount.toString() : "",
          style: theme.typography.body8.copyWith(color: Colors.white),
          textAlign: TextAlign.center,
        ),
      ),
      const Icon(FluentIcons.chevron_right_24_filled),
    ],
  );
}