Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
* master:
  chore(release): 0.12.2
  fixed resizeToAvoidBottomPadding
  • Loading branch information
lg8294 committed Feb 1, 2021
2 parents ca9417b + e97155e commit cefea7c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

* Lint: Format to line length 80 for pub score

## 0.12.2

* Fix: Deprecation of [`resizeToAvoidBottomPadding`](https://api.flutter.dev/flutter/material/Scaffold/resizeToAvoidBottomPadding.html). Replaced by `resizeToAvoidBottomInset`
- Thanks to: [#423](https://github.com/brianegan/chewie/pull/423)

## 0.12.1

* Fix: Duration called on null for cupertino controls
Expand Down
2 changes: 1 addition & 1 deletion example/lib/auto_rotate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class _ChewieDemoState extends State<ChewieDemo> {
builder: (BuildContext context, Widget child) {
return VideoScaffold(
child: Scaffold(
resizeToAvoidBottomPadding: false,
resizeToAvoidBottomInset: false,
body: Container(
alignment: Alignment.center,
color: Colors.black,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/chewie_player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class ChewieState extends State<Chewie> {
_ChewieControllerProvider controllerProvider,
) {
return Scaffold(
resizeToAvoidBottomPadding: false,
resizeToAvoidBottomInset: false,
body: Container(
alignment: Alignment.center,
color: Colors.black,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: chewie
description: A video player for Flutter with Cupertino and Material play controls
version: 0.12.1+1
version: 0.12.2
homepage: https://github.com/brianegan/chewie

environment:
Expand Down

0 comments on commit cefea7c

Please sign in to comment.