Subscriptions

This commit is contained in:
Hillel Coren 2021-04-05 16:10:51 +03:00
parent a0bd84372c
commit a5b99eb904
1 changed files with 13 additions and 2 deletions

View File

@ -533,8 +533,19 @@ class _SubscriptionEditState extends State<SubscriptionEdit>
else
...webhookConfiguration.postPurchaseHeaders.keys.map(
(key) => ListTile(
title: Text(
'$key: ${webhookConfiguration.postPurchaseHeaders[key]}'),
contentPadding: const EdgeInsets.all(0),
title: Row(
children: [
Expanded(
child: Text(key),
),
SizedBox(width: kTableColumnGap),
Expanded(
child: Text(
webhookConfiguration.postPurchaseHeaders[key]),
)
],
),
trailing: IconButton(
icon: Icon(Icons.clear),
tooltip: localization.removeHeader,