1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

bug fix in cutomTweenDemo (#675)

This commit is contained in:
Priyanshu Agarwal
2021-01-27 03:51:42 +05:30
committed by GitHub
parent 4ae90f3aa9
commit 6502209a78

View File

@@ -71,6 +71,9 @@ class _CustomTweenDemoState extends State<CustomTweenDemo>
], ],
), ),
body: SafeArea( body: SafeArea(
child: Container(
alignment: Alignment.bottomCenter,
child: SingleChildScrollView(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: CrossAxisAlignment.stretch, crossAxisAlignment: CrossAxisAlignment.stretch,
@@ -94,6 +97,8 @@ class _CustomTweenDemoState extends State<CustomTweenDemo>
], ],
), ),
), ),
),
),
); );
} }
} }