You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
diplomatic-quarter/lib/pages/pharmacies/screens/phramacy-product-detail-pag...

20 lines
557 B
Dart

import 'package:diplomaticquarterapp/core/model/pharmacies/PharmacyProduct.dart';
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
import 'package:flutter/material.dart';
class ProductDetailScreen extends StatelessWidget {
final PharmacyProduct product;
ProductDetailScreen(this.product);
@override
Widget build(BuildContext context) {
return AppScaffold(
body: Center(
child: Texts("id = ${product.id}"),
),
);
}
}