mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-19 23:14:22 +01:00
Run dart format -l 110
This commit is contained in:
@@ -122,16 +122,13 @@ class _MyAppState extends State<MyApp> {
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: Text(
|
||||
"Pair Hash: ${prepareReceiveResponse.pairHash}"),
|
||||
title: Text("Pair Hash: ${prepareReceiveResponse.pairHash}"),
|
||||
),
|
||||
ListTile(
|
||||
title: Text(
|
||||
"Payer Amount: ${prepareReceiveResponse.payerAmountSat} (in sats)"),
|
||||
title: Text("Payer Amount: ${prepareReceiveResponse.payerAmountSat} (in sats)"),
|
||||
),
|
||||
ListTile(
|
||||
title: Text(
|
||||
"Fees: ${prepareReceiveResponse.feesSat} (in sats)"),
|
||||
title: Text("Fees: ${prepareReceiveResponse.feesSat} (in sats)"),
|
||||
),
|
||||
const SizedBox(height: 16.0),
|
||||
FutureBuilder<ReceivePaymentResponse>(
|
||||
@@ -151,30 +148,23 @@ class _MyAppState extends State<MyApp> {
|
||||
}
|
||||
|
||||
final receivePaymentResponse = snapshot.data!;
|
||||
debugPrint(
|
||||
"Invoice ID: ${receivePaymentResponse.id}");
|
||||
debugPrint(
|
||||
"Invoice: ${receivePaymentResponse.invoice}");
|
||||
debugPrint("Invoice ID: ${receivePaymentResponse.id}");
|
||||
debugPrint("Invoice: ${receivePaymentResponse.invoice}");
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.symmetric(
|
||||
horizontal: 16.0),
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
||||
child: Text(
|
||||
"Invoice for receive payment of 1000 sats",
|
||||
style: Theme.of(context)
|
||||
.textTheme
|
||||
.headlineSmall,
|
||||
style: Theme.of(context).textTheme.headlineSmall,
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: Text(
|
||||
"Invoice ID: ${receivePaymentResponse.id}"),
|
||||
title: Text("Invoice ID: ${receivePaymentResponse.id}"),
|
||||
),
|
||||
ListTile(
|
||||
title: Text(
|
||||
"Invoice: ${receivePaymentResponse.invoice}"),
|
||||
title: Text("Invoice: ${receivePaymentResponse.invoice}"),
|
||||
),
|
||||
],
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user