dev/fix-news #2

Merged
Mr.Jebelli merged 8 commits from dev/fix-news into master 2025-07-16 11:59:01 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a9a8949cd0 - Show all commits

View File

@ -42,7 +42,6 @@ class _AuthenticationState extends State<Authentication> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
resizeToAvoidBottomInset: false,
body: Consumer<AuthenticationState>( body: Consumer<AuthenticationState>(
builder: (context, state, child) => WillPopScope( builder: (context, state, child) => WillPopScope(
onWillPop: () async { onWillPop: () async {

View File

@ -49,7 +49,8 @@ class AuthenticationLayout extends StatelessWidget {
SliverPadding( SliverPadding(
padding: const EdgeInsets.symmetric(horizontal: 20), padding: const EdgeInsets.symmetric(horizontal: 20),
sliver: SliverFillRemaining( sliver: SliverFillRemaining(
hasScrollBody: false, hasScrollBody: true,
fillOverscroll: true,
child: Column( child: Column(
children: [ children: [
for (var i = 0; i < children.length; i++) children[i], for (var i = 0; i < children.length; i++) children[i],