Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@

build/

.idea/
.idea/

android/loca

4 changes: 2 additions & 2 deletions lib/flushbar_route.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'flushbar.dart';
class FlushbarRoute<T> extends OverlayRoute<T> {
final Flushbar flushbar;
final Builder _builder;
final Completer<T> _transitionCompleter = Completer<T>();
final Completer<T?> _transitionCompleter = Completer<T?>();
final FlushbarStatusCallback? _onStatusChanged;

Animation<double>? _filterBlurAnimation;
Expand Down Expand Up @@ -52,7 +52,7 @@ class FlushbarRoute<T> extends OverlayRoute<T> {
}
}

Future<T> get completed => _transitionCompleter.future;
Future<T?> get completed => _transitionCompleter.future;
bool get opaque => false;

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
sdk: flutter

dev_dependencies:
flutter_lints: ^1.0.4
flutter_lints: ^2.0.1
flutter_test:
sdk: flutter

Expand Down