This commit is contained in:
Phuoc Nguyen
2025-11-19 16:16:30 +07:00
parent 73ad2fc80c
commit 54cb7d0fdd
2 changed files with 17 additions and 17 deletions

View File

@@ -213,28 +213,27 @@ class _ProductDetailPageState extends ConsumerState<ProductDetailPage> {
),
body: productAsync.when(
data: (product) {
return Stack(
return Column(
children: [
// Scrollable content
SingleChildScrollView(
child: Column(
children: [
// Image Gallery Section
ImageGallerySection(product: product),
Expanded(
child: SingleChildScrollView(
child: Column(
children: [
// Image Gallery Section
ImageGallerySection(product: product),
const SizedBox(height: AppSpacing.md),
const SizedBox(height: AppSpacing.md),
// Product Information Section
ProductInfoSection(product: product),
// Product Information Section
ProductInfoSection(product: product),
const SizedBox(height: AppSpacing.md),
const SizedBox(height: AppSpacing.md),
// Product Tabs Section
ProductTabsSection(product: product),
// Bottom padding for sticky action bar
const SizedBox(height: 88.0),
],
// Product Tabs Section
ProductTabsSection(product: product),
],
),
),
),

View File

@@ -454,7 +454,8 @@ class _ReviewsTab extends ConsumerWidget {
// Review Items
...reviews.map((review) => _ReviewItem(review: review)),
const SizedBox(height: 48),
const SizedBox(height: 24),
],
);
},