Skip to content

Commit

Permalink
feat(#708): do not resize screen when keyboard opens
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Nov 21, 2024
1 parent a069345 commit f6dd0b1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/lib/common/widgets/page_scaffold.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Scaffold pageScaffold({
}) {
return Scaffold(
key: key,
resizeToAvoidBottomInset: false,
body: CustomScrollView(slivers: [
SliverAppBar(
scrolledUnderElevation: 0,
Expand Down Expand Up @@ -95,6 +96,7 @@ Widget unscrollablePageScaffold({
child: Scaffold(
key: key,
appBar: appBar,
resizeToAvoidBottomInset: false,
body: SafeArea(
child: Padding(
padding: pagePadding(),
Expand Down

0 comments on commit f6dd0b1

Please sign in to comment.