Skip to content

Commit

Permalink
Small formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Sep 3, 2024
1 parent 9f3926b commit 53ec7e7
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions lib/console.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,20 @@ class ConsoleState extends ConsumerState<Console> {
exit: fadeOut() + scaleOut(),
exitDuration: Durations.medium1,
child: FloatingActionButton(
mini: true,
child: const Icon(Icons.arrow_downward),
onPressed: () {
_scrollController
.animateTo(
_scrollController.position.maxScrollExtent,
duration: Durations.medium4,
curve: Curves.easeInOut,
)
.then((_) {
_scrollToBottom();
});
}),
mini: true,
child: const Icon(Icons.arrow_downward),
onPressed: () {
_scrollController
.animateTo(
_scrollController.position.maxScrollExtent,
duration: Durations.medium4,
curve: Curves.easeInOut,
)
.then((_) {
_scrollToBottom();
});
},
),
);
},
),
Expand Down

0 comments on commit 53ec7e7

Please sign in to comment.