titlePlaceholder static method
Implementation
static Widget titlePlaceholder({double? width}) {
return Shimmer.fromColors(
baseColor: Get.theme.disabledColor,
highlightColor: Get.theme.highlightColor,
child: Container(
decoration: BoxDecoration(
color: Colors.black,
borderRadius: BorderRadius.circular(5),
),
width: width,
height: 12.0,
),
);
}