Abhishek Kumar Singh
Abhishek Kumar Singh
I think they forgot to update the documentation: use ``` app:andexo_show_full_screen="true" ``` instead.
### can be done with `sql` as well, Earlier select block ``` .select({ userId: quizParticipants.userId, totalPrizeAmount: sum(quizParticipants.prizeAmount).as('total_prize_amount'), totalPoints: sum(quizParticipants.pointsEarned).as('total_points'), totalQuestionsCorrect: sum(quizParticipants.questionsCorrect).as('total_questions_correct'), totalQuestionsIncorrect: sum(quizParticipants.questionsIncorrect).as('total_questions_incorrect'), quizzesParticipated: count().as('quizzes_participated'), name: profile.name, image: profile.image, })...
Hey which version of temporal server or temporal SDK version are you using?
Had to to something like below in order to make it work. ```dart FilePicker? platform; if (kIsWeb) { platform = FilePickerWeb.platform; } else { platform = FilePicker.platform; } FilePickerResult? result...
https://developer.pagerduty.com/api-reference/368ae3d938c9e-send-an-event-to-pager-duty
was facing something similar and [found this out](https://github.com/miguelpruivo/flutter_file_picker/issues/1616#issuecomment-2451724032)