getContainer function

dynamic getContainer()

Implementation

getContainer() {
  return Shimmer.fromColors(
    baseColor: Color.fromRGBO(0x70, 0x00, 0xCB, 0.06),
    highlightColor: Color.fromRGBO(0xA8, 0xA8, 0xA8, 0.06),
    child: Container(
      margin: EdgeInsets.all(10),
      width: double.infinity,
      height: 50,
      decoration: BoxDecoration(
        color: Colors.black,
        borderRadius: BorderRadius.circular(16),
      ),
    ),
  );
}