尝试创建表单时Flutter错误

时间:2020-10-17 23:20:05

标签: flutter

import 'package:flutter/material.dart';


void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Gather'),),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: Form(
          child: Column(children: <Widget>[
            TextFormField(
              decoration: InputDecoration(hintText: 'Name'),
            ),
            TextFormField(
              decoration: InputDecoration(hintText: 'Email'),
            ),
            RaisedButton(
              onPressed: () { },
              child: Text('Start Matching!'),
              )
          ],),
        ),
      ),
    );

除了结尾,代码本身看起来一切都很好。在末尾有一条红色的波浪线;它将阻止我的整个代码运行。

1 个答案:

答案 0 :(得分:0)

上面粘贴的代码的语法不正确。
);return Scaffold(结尾,因此您缺少2个}}

此外,您可能需要包裹好脚手架,例如MaterialApp(home: Scaffold(...))