ВК
Size: a a a
ВК
ВК
P
КА
КА
КА
A
АС
КА
КА
EE
SK
A
PD
AT
EE
EE
final keyboardHeight = MediaQuery.of(context).viewInsets.bottom;
return Scaffold(
body: SafeArea(
bottom: false,
child: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) {
return SingleChildScrollView(
child: ConstrainedBox(
constraints: BoxConstraints(
minHeight: constraints.maxHeight + keyboardHeight,
),
child: IntrinsicHeight(
child: Column(
children: <Widget>[
Container(),
],
),
),
),
);
},
),
),
);
u
EE
u