showNoItemsFound static method

Widget showNoItemsFound(
  1. dynamic height,
  2. dynamic message
)

Implementation

static Widget showNoItemsFound(height,message){
  return SafeArea(
    child: Container(
      height: height,
      color: Colors.white,
      child: Center(
        child: Text(
          message,style: TextStyle(fontSize: 15,color: Colors.black,fontWeight: FontWeight.w500),
        ),
      ),
    ),
  );
}