@ -108,7 +108,8 @@ class _LiveCarePatientScreenState extends State<LiveCarePatientScreen> {
])),
),
Expanded(
model.state == ViewState.Idle
? Expanded(
child: Container(
child: model.filterData.isEmpty
? Center(
@ -148,7 +149,8 @@ class _LiveCarePatientScreenState extends State<LiveCarePatientScreen> {
);
})),
) : Expanded(
child: AppLoaderWidget(containerColor: Colors.transparent,)),
],
@ -24,7 +24,7 @@ class _AppLoaderWidgetState extends State<AppLoaderWidget> {
child: Stack(
children: [
Container(
color: Colors.grey.withOpacity(0.6),
color: widget.containerColor??Colors.grey.withOpacity(0.6),
Container(child: GifLoaderContainer(), margin: EdgeInsets.only(
bottom: MediaQuery.of(context).size.height * 0.09))