diff --git a/packages/smooth_app/lib/pages/product/edit_product_page.dart b/packages/smooth_app/lib/pages/product/edit_product_page.dart index 4b9ca012b69..4642a00d94f 100644 --- a/packages/smooth_app/lib/pages/product/edit_product_page.dart +++ b/packages/smooth_app/lib/pages/product/edit_product_page.dart @@ -60,6 +60,8 @@ class _EditProductPageState extends State with UpToDateMixin { upToDateProduct, appLocalizations, ); + final String productBrand = + getProductBrands(upToDateProduct, appLocalizations); return SmoothScaffold( appBar: SmoothAppBar( @@ -72,7 +74,7 @@ class _EditProductPageState extends State with UpToDateMixin { crossAxisAlignment: CrossAxisAlignment.start, children: [ AutoSizeText( - productName, + '$productBrand,$productName', minFontSize: theme.textTheme.titleLarge?.fontSize?.clamp(13.0, 17.0) ?? 13.0,