diff --git a/packages/smooth_app/lib/pages/product/summary_card.dart b/packages/smooth_app/lib/pages/product/summary_card.dart index 7fc73d4d6b3..09696cdf90e 100644 --- a/packages/smooth_app/lib/pages/product/summary_card.dart +++ b/packages/smooth_app/lib/pages/product/summary_card.dart @@ -266,6 +266,22 @@ class _SummaryCardState extends State { context: context, ), ), + if ((widget._product.statesTags + ?.contains('en:product-name-to-be-completed') ?? + false) || + (widget._product.statesTags + ?.contains('en:quantity-to-be-completed') ?? + false)) + addPanelButton( + 'Complete basic details', // TODO(vik4114): localization + onPressed: () { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Not implemented yet'), + duration: Duration(seconds: 2), + ), + ); + }), ], ); }