card static method
Implementation
static Widget card() {
return const Padding(
padding: EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
MotionSkeleton.rectangle(
width: double.infinity, height: 180, borderRadius: 12),
SizedBox(height: 12),
MotionSkeleton.rectangle(width: 200, height: 20),
SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
MotionSkeleton.rectangle(width: 100, height: 12),
MotionSkeleton.rectangle(width: 60, height: 12),
],
)
],
),
);
}