Add product detail to popular products

This commit is contained in:
Moe Poi ~ 2022-05-15 22:08:30 +07:00
parent 69badc11c2
commit f767280567

View file

@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:nekoya_flutter/api/api.dart';
import 'package:nekoya_flutter/components/product_detail.dart';
import '../utils/utils.dart';
import 'product_card.dart';
import 'section_title.dart';
@ -42,7 +43,14 @@ class PopularProducts extends StatelessWidget {
imageUrl: "https://nekoya.moe.team/img/${data[index]['IMAGE']}",
price: 99,
bgColor: const Color(0xFFFEFBF9),
press: () {},
press: () {
showModalBottomSheet(
isScrollControlled: true,
backgroundColor: Colors.transparent,
context: context,
builder: (context) => productDetail(context, data[index]['ID']),
);
},
),
),
),