comment static method
Comment skeleton
Implementation
static Widget comment() {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SkeletonLoader.circle(radius: 18),
const SizedBox(width: 10),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SkeletonLoader(height: 12, width: 80, borderRadius: 4),
const SizedBox(height: 6),
SkeletonLoader.text(width: double.infinity),
SkeletonLoader.text(width: 150),
],
),
),
],
),
);
}