text static method
Widget
text({
- double? width,
- double height = 12,
- double radius = 4,
- SkeletonConfig? config,
- EdgeInsetsGeometry? margin,
Create a text line skeleton
Implementation
static Widget text({
double? width,
double height = 12,
double radius = 4,
SkeletonConfig? config,
EdgeInsetsGeometry? margin,
}) {
return SkeletonText(
width: width,
height: height,
radius: radius,
config: config,
margin: margin,
);
}