为什么以下flutter代码不能正常运行?

发布于 2022-09-12 22:35:07 字数 965 浏览 12 评论 0

希望点击按钮以后可以看到数字加一

代码:

import 'package:flutter/material.dart';

class Choose extends StatefulWidget {
  @override
  _ChooseState createState() => _ChooseState();
}

class _ChooseState extends State<Choose> {
  @override
  void initState() {
    print('init');
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    int count = 0;
    print('build');
    return Scaffold(
        appBar: AppBar(
            backgroundColor: Colors.grey[200],
            title: Text('choose'),
            centerTitle: true,
            elevation: 0),
        body: Column(children: <Widget>[
          RaisedButton(
              onPressed: () {
                setState(() {
                  count++;
                });
              },
              child: Text('count add')),
          Text('$count')
        ]));
  }

  @override
  void dispose() {
    print('dispose');
    super.dispose();
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分开我的手 2022-09-19 22:35:07

原来count要写在外面
不然每次build都赋值为0了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文