[mob][photos] Fix loading and error state of 'all' screen of people section

This commit is contained in:
ashilkn
2024-11-18 11:01:11 +05:30
parent 4f86ca9415
commit f42ae367dc

View File

@@ -6,6 +6,7 @@ import "package:photos/events/event.dart";
import "package:photos/models/search/search_result.dart";
import "package:photos/models/search/search_types.dart";
import "package:photos/theme/ente_theme.dart";
import "package:photos/ui/common/loading_widget.dart";
import "package:photos/ui/viewer/search_tab/people_section.dart";
class PeopleSectionAllPage extends StatefulWidget {
@@ -62,9 +63,9 @@ class _PeopleSectionAllPageState extends State<PeopleSectionAllPage> {
future: sectionData,
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return const Center(child: CircularProgressIndicator());
return const Center(child: EnteLoadingWidget());
} else if (snapshot.hasError) {
return Center(child: Text('Error: ${snapshot.error}'));
return const Center(child: Icon(Icons.error_outline_rounded));
} else if (!snapshot.hasData || snapshot.data!.isEmpty) {
return const Center(child: Text('No results found.'));
} else {