flutter - 数组索引index
2022-12-28 13:26:25
import 'package:flutter/material.dart';
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: SingleChildScrollView(
child: Builder(
builder: (context) => Padding(
padding: EdgeInsets.only(bottom: MediaQuery.of(context).viewInsets.bottom),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
TextField(),
RaisedButton(
child: Text('Submit'),
onPressed: () {},
),
],
),
),
),
),
);
}
}