Skip to content

Commit

Permalink
refact: migrate deprecated glow methods
Browse files Browse the repository at this point in the history
Signed-off-by: arafaysaleem <a.rafaysaleem@gmail.com>
  • Loading branch information
arafaysaleem committed Dec 22, 2021
1 parent ef50b82 commit f299115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/views/widgets/common/scrollable_column.dart
Expand Up @@ -35,7 +35,7 @@ class ScrollableColumn extends StatelessWidget {
builder: (context, constraint) {
return NotificationListener<OverscrollIndicatorNotification>(
onNotification: (overScroll) {
overScroll.disallowGlow();
overScroll.disallowIndicator();
return false;
},
child: SingleChildScrollView(
Expand Down
2 changes: 1 addition & 1 deletion lib/views/widgets/theater/seats_area.dart
Expand Up @@ -32,7 +32,7 @@ class SeatsArea extends StatelessWidget {
bool isBooked(SeatModel seat) => booked.contains(seat);

bool _onGlowNotification(OverscrollIndicatorNotification overScroll) {
overScroll.disallowGlow();
overScroll.disallowIndicator();
return true;
}

Expand Down

0 comments on commit f299115

Please sign in to comment.