Skip to content

Commit 0f8e053

Browse files
committed
chore: dart format
1 parent dfbaa1b commit 0f8e053

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

lib/pages/exchange_view/trade_details_view.dart

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -301,21 +301,18 @@ class _TradeDetailsViewState extends ConsumerState<TradeDetailsView> {
301301
"device and you will no longer be able to track its "
302302
"status. Proceed only if you know what you are doing.",
303303
leftButton: TextButton(
304-
style: Theme.of(context)
305-
.extension<StackColors>()!
306-
.getSecondaryEnabledButtonStyle(context),
307-
child: Text(
308-
"Cancel",
309-
style: STextStyles.itemSubtitle12(context),
310-
),
304+
style: Theme.of(
305+
context,
306+
).extension<StackColors>()!.getSecondaryEnabledButtonStyle(context),
307+
child: Text("Cancel", style: STextStyles.itemSubtitle12(context)),
311308
onPressed: () {
312309
Navigator.of(context).pop();
313310
},
314311
),
315312
rightButton: TextButton(
316-
style: Theme.of(context)
317-
.extension<StackColors>()!
318-
.getPrimaryEnabledButtonStyle(context),
313+
style: Theme.of(
314+
context,
315+
).extension<StackColors>()!.getPrimaryEnabledButtonStyle(context),
319316
child: Text("Delete", style: STextStyles.button(context)),
320317
onPressed: () async {
321318
await ref

0 commit comments

Comments
 (0)