Ticket Details

Con't find an answer?

Need Assistance? Submit a Support Ticket

Submit a Support Ticket
Mahmoud Elghazy
Mahmoud Elghazy 28 Oct 2024
DTLive - Flutter App (Android - iOS - Website ) Movies - TV Series - Live TV - OTT - Admin Panel
Closed public

Q : I need help

There is a problem logging in. I did all the settings as I mentioned in the explanation, but I don’t know where the problem is. This is a video that explains the problem.
https://drive.google.com/file/d/1FIs_ULMnd2O9Bf0lUJbXGAn6Z8ESvz8c/view?usp=sharing

Add Attachments .png  .jpg  .jpeg  .docx  .mp4  .mp3  .pdf  .zip  .sql
Replied (198) 186–190 of 198
Mahmoud Elghazy
Mahmoud Elghazy 28 Oct 2024, 8:09 AM

Sorry, I pasted the code in the previous image by mistake, but now it is correct, and this image shows that. This solution for the search is correct.

Mahmoud Elghazy
Mahmoud Elghazy 28 Oct 2024, 7:53 AM

I did this. Is this correct as shown in the picture?
Is this a notification problem?

Mr. Priyank
Mr. Priyank employee 28 Oct 2024, 7:48 AM
Hi,
Replace below code at the given location in attached screenshot : Future<void> getSearchContent(searchText, pageNo) async {
printLog("getSearchContent searchText :===> $searchText");
printLog("getSearchContent pageNo :=======> $pageNo");
if (pageNo == 1) {
searchDataList = [];
}
loadingSearch = true;
searchModel = search.SearchModel();
searchModel = await ApiService().searchContent(searchText, pageNo);
if (searchModel.status == 200) {
setPagination(searchModel.totalRows, searchModel.totalPage,
searchModel.currentPage, searchModel.morePage);
if (searchModel.result != null && (searchModel.result?.length ?? 0) > 0) {
printLog(
"getSearchContent length :=1=> ${(searchModel.result?.length ?? 0)}");
for (var i = 0; i < (searchModel.result?.length ?? 0); i++) {
searchDataList?.add(searchModel.result?[i] ?? search.Result());
}
final Map<String, search.Result> postMap = {};
searchDataList?.forEach((item) {
final key = '${item.id}-${item.videoType}';
postMap[key] = item;
});
searchDataList = postMap.values.toList();
setLoadMore(false);
printLog(
"getSearchContent length :=2=> ${(searchModel.result?.length ?? 0)}");
}
}
loadingSearch = false;
notifyListeners();
}

Thank you!

Regards, Mr. Priyank

Mr. Priyank
Mr. Priyank employee 28 Oct 2024, 7:10 AM

We are check this issue, update you soon.

Thank you!

Regards, Mr. Priyank

Mahmoud Elghazy
Mahmoud Elghazy 28 Oct 2024, 7:09 AM


As for the problem of notifications, all the settings are set correctly, but a single signal is not visible to any user within the application, knowing that there is more than one user in the application, including me. This picture shows that
Thank you very much For your patience I wish you a nice day
https://drive.google.com/file/d/1BkfQD8SMjVkNYlg1liLZItSkDKlpj6Ep/view?usp=sharing

Showing 186–190 of 198 replies

Support is Online

Office hours

Monday – Friday
10:00 AM – 06:00 PM
IST (GMT +5:30)

Office time --:-- --
Your time --:-- --
Documentation

Explore Our Support Documentation

Whether you're troubleshooting an issue or looking for step-by-step guidance, our resources are designed to empower you with the knowledge you need

Back To Top