颤振如何导入有状态的小部件

时间:2020-08-14 11:34:46

标签: flutter

您好,我正在尝试学习Flutter。我在一些动画输入字段中找到了这篇文章,我想使用它,但是无法将其导入到我的mainapp中。我该怎么做

https://medium.com/@mjpublicuser/flutter-challenge-animated-text-form-field-884dff3140f0

github文件

https://github.com/manojeeva/flutter_chellange_animated_text_form_field

我的尝试是



import 'package:flutter/material.dart';
import 'test_page.dart';
void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          TestPage()
        ),
      ),
    );
  }
}

Code and structure

1 个答案:

答案 0 :(得分:1)

您确定导入有问题吗?请发布错误消息。

我在您的代码中看到错误,您错过了参数名称,应该是:

...
body: Center(
 child: TestPage(),
),
...

还要检查文件test_page.dart是否与main.dart在同一文件夹中。