detail
This commit is contained in:
@@ -213,10 +213,11 @@ class _ProductDetailPageState extends ConsumerState<ProductDetailPage> {
|
||||
),
|
||||
body: productAsync.when(
|
||||
data: (product) {
|
||||
return Stack(
|
||||
return Column(
|
||||
children: [
|
||||
// Scrollable content
|
||||
SingleChildScrollView(
|
||||
Expanded(
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: [
|
||||
// Image Gallery Section
|
||||
@@ -231,12 +232,10 @@ class _ProductDetailPageState extends ConsumerState<ProductDetailPage> {
|
||||
|
||||
// Product Tabs Section
|
||||
ProductTabsSection(product: product),
|
||||
|
||||
// Bottom padding for sticky action bar
|
||||
const SizedBox(height: 88.0),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// Sticky Action Bar
|
||||
Positioned(
|
||||
|
||||
@@ -454,7 +454,8 @@ class _ReviewsTab extends ConsumerWidget {
|
||||
|
||||
// Review Items
|
||||
...reviews.map((review) => _ReviewItem(review: review)),
|
||||
const SizedBox(height: 48),
|
||||
const SizedBox(height: 24),
|
||||
|
||||
],
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user