fixed otp space
This commit is contained in:
parent
b2961ca7d8
commit
a9a8949cd0
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue