Skip to content

Commit

Permalink
resolved conflicts (#112)
Browse files Browse the repository at this point in the history
Co-authored-by: Tavkeer Shah <[email protected]>
  • Loading branch information
tavkeer and Tavkeer Shah authored Oct 19, 2023
1 parent bf11d3b commit f10d879
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/app/modules/home/views/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ class HomeView extends GetView<HomeController> {
if (!snapshot.hasData) {
return const Center(
child: CircularProgressIndicator.adaptive(
backgroundColor: kprimaryColor,
backgroundColor: Colors.transparent,
valueColor: AlwaysStoppedAnimation(
kprimaryColor,
),
Expand Down Expand Up @@ -1194,7 +1194,12 @@ class HomeView extends GetView<HomeController> {
},
);
} else {
return const CircularProgressIndicator.adaptive();
return const CircularProgressIndicator.adaptive(
backgroundColor: Colors.transparent,
valueColor: AlwaysStoppedAnimation(
kprimaryColor,
),
);
}
},
);
Expand Down

0 comments on commit f10d879

Please sign in to comment.