Subscriptions
This commit is contained in:
parent
a0bd84372c
commit
a5b99eb904
|
|
@ -533,8 +533,19 @@ class _SubscriptionEditState extends State<SubscriptionEdit>
|
||||||
else
|
else
|
||||||
...webhookConfiguration.postPurchaseHeaders.keys.map(
|
...webhookConfiguration.postPurchaseHeaders.keys.map(
|
||||||
(key) => ListTile(
|
(key) => ListTile(
|
||||||
title: Text(
|
contentPadding: const EdgeInsets.all(0),
|
||||||
'$key: ${webhookConfiguration.postPurchaseHeaders[key]}'),
|
title: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Text(key),
|
||||||
|
),
|
||||||
|
SizedBox(width: kTableColumnGap),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
webhookConfiguration.postPurchaseHeaders[key]),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
trailing: IconButton(
|
trailing: IconButton(
|
||||||
icon: Icon(Icons.clear),
|
icon: Icon(Icons.clear),
|
||||||
tooltip: localization.removeHeader,
|
tooltip: localization.removeHeader,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue