@@ -30,7 +30,6 @@ import 'package:anymex/widgets/non_widgets/snackbar.dart';
3030import 'package:dartotsu_extension_bridge/dartotsu_extension_bridge.dart' ;
3131import 'package:flutter/foundation.dart' ;
3232import 'package:flutter/material.dart' ;
33- import 'package:anymex/utils/theme_extensions.dart' ;
3433import 'package:flutter/widgets.dart' ;
3534import 'package:get/get.dart' ;
3635import 'package:http/http.dart' ;
@@ -174,7 +173,7 @@ class AnilistData extends GetxController implements BaseService, OnlineService {
174173 if (acceptedLists.contains ("Recommended Animes" ) &&
175174 settings.homePageCards.keys.contains ('Recommended Animes' ))
176175 ReusableCarousel (
177- title: "Recommended Animes " ,
176+ title: "Recommended Anime " ,
178177 data: isLoggedIn.value
179178 ? recAnimes.where ((e) => ! ids[0 ].contains (e.id)).toList ()
180179 : recAnimes,
@@ -183,7 +182,7 @@ class AnilistData extends GetxController implements BaseService, OnlineService {
183182 if (acceptedLists.contains ("Recommended Mangas" ) &&
184183 settings.homePageCards.keys.contains ('Recommended Mangas' ))
185184 ReusableCarousel (
186- title: "Recommended Mangas " ,
185+ title: "Recommended Manga " ,
187186 data: isLoggedIn.value
188187 ? recMangas.where ((e) => ! ids[1 ].contains (e.id)).toList ()
189188 : recMangas,
@@ -199,21 +198,21 @@ class AnilistData extends GetxController implements BaseService, OnlineService {
199198 return [
200199 buildBigCarousel (trendingAnimes, false ),
201200 buildSection ('Recently Updated' , recentlyUpdatedAnimes),
202- buildSection ('Trending Animes ' , trendingAnimes),
203- buildSection ('Popular Animes ' , popularAnimes),
201+ buildSection ('Trending Anime ' , trendingAnimes),
202+ buildSection ('Popular Anime ' , popularAnimes),
204203 buildSection ('Recently Completed' , latestAnimes),
205- buildSection ('Upcoming Animes ' , upcomingAnimes),
204+ buildSection ('Upcoming Anime ' , upcomingAnimes),
206205 ].obs;
207206 }
208207
209208 @override
210209 RxList <Widget > mangaWidgets (BuildContext context) {
211210 return [
212211 buildBigCarousel (trendingMangas, true ),
213- buildMangaSection ('Trending Mangas ' , trendingMangas),
214- buildMangaSection ('Latest Mangas ' , latestMangas),
215- buildMangaSection ('Popular Mangas ' , popularMangas),
216- buildMangaSection ('More Popular Mangas ' , morePopularMangas),
212+ buildMangaSection ('Trending Manga ' , trendingMangas),
213+ buildMangaSection ('Latest Manga ' , latestMangas),
214+ buildMangaSection ('Popular Manga ' , popularMangas),
215+ buildMangaSection ('More Popular Manga ' , morePopularMangas),
217216
218217 // buildMangaSection('Most Favorite Mangas', mostFavoriteMangas),
219218 // buildMangaSection('Top Rated Mangas', topRatedMangas),
0 commit comments