CLShimmer.tableRow constructor
CLShimmer.tableRow({
- Key? key,
- double height = 48,
- int columnsCount = 4,
- EdgeInsets? margin,
Crea una riga della tabella con shimmer
Implementation
factory CLShimmer.tableRow({
Key? key,
double height = 48,
int columnsCount = 4,
EdgeInsets? margin,
}) {
return CLShimmer._tableRow(
key: key,
height: height,
columnsCount: columnsCount,
margin: margin,
);
}