File tree 2 files changed +3
-3
lines changed
firebase_ui_database/lib/src
firebase_ui_firestore/lib/src
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ class FirebaseDatabaseListView extends FirebaseDatabaseQueryBuilder {
438
438
builder: (context, snapshot, _) {
439
439
if (snapshot.isFetching) {
440
440
return loadingBuilder? .call (context) ??
441
- const Center (child: CircularProgressIndicator ());
441
+ const Center (child: CircularProgressIndicator . adaptive ());
442
442
}
443
443
444
444
if (snapshot.hasError && errorBuilder != null ) {
Original file line number Diff line number Diff line change @@ -460,7 +460,7 @@ class FirestoreListView<Document> extends FirestoreQueryBuilder<Document> {
460
460
builder: (context, snapshot, _) {
461
461
if (snapshot.isFetching) {
462
462
return loadingBuilder? .call (context) ??
463
- const Center (child: CircularProgressIndicator ());
463
+ const Center (child: CircularProgressIndicator . adaptive ());
464
464
}
465
465
466
466
if (snapshot.hasError && errorBuilder != null ) {
@@ -570,7 +570,7 @@ class FirestoreListView<Document> extends FirestoreQueryBuilder<Document> {
570
570
builder: (context, snapshot, _) {
571
571
if (snapshot.isFetching) {
572
572
return loadingBuilder? .call (context) ??
573
- const Center (child: CircularProgressIndicator ());
573
+ const Center (child: CircularProgressIndicator . adaptive ());
574
574
}
575
575
576
576
if (snapshot.hasError && errorBuilder != null ) {
You can’t perform that action at this time.
0 commit comments