This commit is contained in:
2026-07-12 04:33:48 +08:00
parent f8a90ad305
commit e7ce0f7bae
151 changed files with 2765 additions and 2947 deletions

View File

@@ -9,16 +9,16 @@ import '../widgets/mobile/product_search.dart' as mobile;
class ProductSearch extends StatelessWidget {
final Business business;
const ProductSearch(this.business, {Key key}) : super(key: key);
const ProductSearch(this.business, {Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return ResponsiveBuilder(
builder: (context, sizingInformation) =>
ScreenTypeLayout(
mobile: mobile.ProductSearch(business),
tablet: desktop.ProductSearch(business),
desktop: desktop.ProductSearch(business),
ScreenTypeLayout.builder(
mobile: (context) => mobile.ProductSearch(business),
tablet: (context) => desktop.ProductSearch(business),
desktop: (context) => desktop.ProductSearch(business),
),
);
}