showNoItemsFound static method
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),
),
),
),
);
}