courseTableCellSkeletonPreview function

  1. @Preview(name: 'CourseTableCellSkeleton', group: 'Course Table', size: Size(220, 150))
Widget courseTableCellSkeletonPreview()

Implementation

@Preview(
  name: 'CourseTableCellSkeleton',
  group: 'Course Table',
  size: Size(220, 150),
)
Widget courseTableCellSkeletonPreview() {
  return WidgetPreviewFrame(
    child: Row(
      spacing: 4,
      mainAxisAlignment: .center,
      crossAxisAlignment: .start,
      children: [
        const SizedBox(
          width: 50,
          height: 52,
          child: CourseTableCellSkeleton(),
        ),
        const SizedBox(
          width: 50,
          height: 104,
          child: CourseTableCellSkeleton(),
        ),
      ],
    ),
  );
}