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

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

代码:

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();
  }
}
阅读 1.3k
1 个回答

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

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题