develop #1

Merged
akhdanre merged 104 commits from develop into main 2025-07-10 12:38:53 +07:00
2 changed files with 14 additions and 13 deletions
Showing only changes of commit 27a1b9ada6 - Show all commits

View File

@ -29,11 +29,13 @@ class HistoryView extends GetView<HistoryController> {
const SizedBox(height: 20),
Obx(() {
if (controller.isLoading.value) {
return ListView.builder(
itemCount: 3,
itemBuilder: (context, index) {
return ContainerSkeleton();
},
return Expanded(
child: ListView.builder(
itemCount: 3,
itemBuilder: (context, index) {
return ContainerSkeleton();
},
),
);
}

View File

@ -113,14 +113,13 @@ class SearchView extends GetView<SearchQuizController> {
RxList<QuizListingModel> data,
VoidCallback onAllTap,
) {
return SizedBox(
height: 410,
child: Obx(() => RecomendationComponent(
title: title,
datas: data.toList(),
itemOnTap: controller.goToDetailPage,
allOnTap: onAllTap,
)),
return Obx(
() => RecomendationComponent(
title: title,
datas: data.toList(),
itemOnTap: controller.goToDetailPage,
allOnTap: onAllTap,
),
);
}
}