Skip to content

Commit

Permalink
fix(style): add pagination bottom margin
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Dec 20, 2023
1 parent 7b3d967 commit f4ce93a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/screens/dashboard/view/transactions_view.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:io';

import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:my_wit_wallet/bloc/explorer/explorer_bloc.dart';
Expand Down Expand Up @@ -105,7 +107,8 @@ class TransactionsViewState extends State<TransactionsView>
transactions: transactions,
currentWallet: widget.currentWallet,
),
buildPagination(extendedTheme)
buildPagination(extendedTheme),
SizedBox(height: Platform.isIOS ? 16 : 0),
]),
);
}
Expand Down

0 comments on commit f4ce93a

Please sign in to comment.