Skip to content

Commit

Permalink
feat: added small space between appBar and first element;
Browse files Browse the repository at this point in the history
  • Loading branch information
AutoComplete1 committed Nov 10, 2023
1 parent d0bafdf commit 7197d06
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ class _MainViewTokensListState extends ConsumerState<MainViewTokensList> {
List<Widget> widgets = [];
if (sortables.isEmpty) return [];
sortables.sort((a, b) => a.compareTo(b));
// just for small space between appBar and first element
widgets.add(const SizedBox(height: 20));
for (var i = 0; i < sortables.length; i++) {
final isFirst = i == 0;
final isDraggingTheCurrent = draggingSortable == sortables[i];
Expand Down

0 comments on commit 7197d06

Please sign in to comment.