example app: allow scroll in connect page

This commit is contained in:
Hiroshi Horie
2021-10-28 02:14:52 +09:00
parent 8d80a9296a
commit a0a9acc9d9
3 changed files with 66 additions and 63 deletions
+3
View File
@@ -110,9 +110,11 @@ class _ConnectPageState extends State<ConnectPage> {
Widget build(BuildContext context) => Scaffold(
body: Container(
alignment: Alignment.center,
child: SingleChildScrollView(
child: Container(
padding: const EdgeInsets.symmetric(
horizontal: 20,
vertical: 20,
),
constraints: const BoxConstraints(maxWidth: 400),
child: Column(
@@ -181,5 +183,6 @@ class _ConnectPageState extends State<ConnectPage> {
),
),
),
),
);
}