clearNoticeVerticalIntroDevelopedByPreview function

  1. @Preview(name: 'ClearNoticeVertical - Developed By', group: 'Clear Notices', size: Size(450, 140))
Widget clearNoticeVerticalIntroDevelopedByPreview()

Implementation

@Preview(
  name: 'ClearNoticeVertical - Developed By',
  group: 'Clear Notices',
  size: Size(450, 140),
)
Widget clearNoticeVerticalIntroDevelopedByPreview() {
  return WidgetPreviewFrame(
    child: Column(
      mainAxisSize: MainAxisSize.min,
      children: [
        ClearNoticeVertical(
          icon: SvgPicture.asset(
            'assets/npc_horizontal.svg',
            height: 24,
            colorFilter: ColorFilter.mode(
              Colors.grey[600]!,
              BlendMode.srcIn,
            ),
          ),
          text: TextSpan(text: t.intro.developedBy),
        ),
      ],
    ),
  );
}