- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我正在尝试在 SizedBox 中制作一个简单的文本小部件,以响应对 AppBar 中 IconButtons 的点击。我复制了一个较早的 GridView 更新示例(由 SO 社区提供)的范例(或者我认为如此)。在此当前应用程序中,显示当前级别。当点击加号图标时,级别应该增加。当点击重放图标时,级别应重置为 1。
在调试过程中,我发现传递给 Level_Indicator 的级别正在按预期变化。但是在Level_Indicator_State中,level的值一直是1;它从未增加也没有重置。
代码如下。有人会指出我做错了什么吗?谢谢
// ignore_for_file: camel_case_types
// ignore_for_file: constant_identifier_names
// ignore_for_file: non_constant_identifier_names
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class Level_Indicator extends StatefulWidget {
final int level;
Level_Indicator(this.level, {Key key}) : super(key: key);
@override // Level_Indicator
Level_Indicator_State createState() => Level_Indicator_State(level);
} // class Level_Indicator
class Level_Indicator_State extends State<Level_Indicator> {
final int level;
Level_Indicator_State(this.level);
@override // Level_Indicator_State
Widget build(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.min,
children: [
SizedBox(
width: 24.0,
child: Container(
child: Text(
'$level',
style: TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
fontSize: 24.0,
) ,
),
),
),
],
);
}
} // class Level_Indicator_State
class MyApp extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return new MyApp_State();
}
} // class MyApp
class MyApp_State extends State<MyApp> {
int level = 1;
void increment_level ( ){
level++;
setState(() {});
} // increment_level
void reinitialize() {
level = 1;
setState(() {});
} // reinitialize
@override // class MyApp_State
Widget build(BuildContext context) {
return MaterialApp(
title: 'Level Demo',
home: Scaffold(
appBar: AppBar(
title: Text('Level Demo'),
actions: <Widget>[
IconButton(
icon: Icon(Icons.add),
onPressed: () {
increment_level();
},
),
IconButton(
icon: Icon(Icons.replay),
onPressed: () {
reinitialize();
},
),
]
),
body: Center(
child:
Level_Indicator(level)
),
),
);
}
} // class MyApp_State
最佳答案
这个问题有两种解决方法:
为什么 Level_Indicator
是有状态的 Widget?它只是显示给它的东西。 没有要处理的状态。使其无状态。
class Level_Indicator extends StatelessWidget {
final int level;
Level_Indicator(this.level);
@override // Level_Indicator_State
Widget build(BuildContext context) {
print("level state");
print("${level}");
return Row(
mainAxisSize: MainAxisSize.min,
children: [
SizedBox(
width: 24.0,
child: Container(
child: Text(
'${level}',
style: TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
fontSize: 24.0,
),
),
),
),
],
);
}
}
假设出于某种原因我们希望 Level_Indicator
是Stateful。在这种情况下,level
也不是 Level_Indicator_State
的 state
变量。因此,将其用作 widget.level
,如下所示。
class Level_Indicator extends StatefulWidget {
final int level;
Level_Indicator(this.level, {Key key}) : super(key: key);
@override // Level_Indicator
Level_Indicator_State createState() => Level_Indicator_State(level);
} // class Level_Indicator
class Level_Indicator_State extends State<Level_Indicator> {
Level_Indicator_State();
@override // Level_Indicator_State
Widget build(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.min,
children: [
SizedBox(
width: 24.0,
child: Container(
child: Text(
'${widget.level}',
style: TextStyle(
color: Colors.blue,
fontWeight: FontWeight.bold,
fontSize: 24.0,
) ,
),
),
),
],
);
}
} // class Level_Indicator_State // class Level_Indicator_State
关于dart - 我如何获得一个简单的小部件来响应 IconButton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52172012/
我正在努力实现以下目标, 假设我有字符串: ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ) ) ) ) ) 我想编写一个正则
给定: 1 2 3 4 5 6
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
大家好,我卡颂。 Svelte问世很久了,一直想写一篇好懂的原理分析文章,拖了这么久终于写了。 本文会围绕一张流程图和两个Demo讲解,正确的食用方式是用电脑打开本文,跟着流程图、Demo一
身份证为15位或者18位,15位的全为数字,18位的前17位为数字,最后一位为数字或者大写字母”X“。 与之匹配的正则表达式: ?
我们先来最简单的,网页的登录窗口; 不过开始之前,大家先下载jquery的插件 本人习惯用了vs2008来做网页了,先添加一个空白页 这是最简单的的做法。。。先在body里面插入 <
1、MySQL自带的压力测试工具 Mysqlslap mysqlslap是mysql自带的基准测试工具,该工具查询数据,语法简单,灵活容易使用.该工具可以模拟多个客户端同时并发的向服务器发出
前言 今天大姚给大家分享一款.NET开源(MIT License)、免费、简单、实用的数据库文档(字典)生成工具,该工具支持CHM、Word、Excel、PDF、Html、XML、Markdown等
Go语言语法类似于C语言,因此熟悉C语言及其派生语言( C++、 C#、Objective-C 等)的人都会迅速熟悉这门语言。 C语言的有些语法会让代码可读性降低甚至发生歧义。Go语言在C语言的
我正在使用快速将 mkv 转换为 mp4 ffmpeg 命令 ffmpeg -i test.mkv -vcodec copy -acodec copy new.mp4 但不适用于任何 mkv 文件,当
我想计算我的工作簿中的工作表数量,然后从总数中减去特定的工作表。我错过了什么?这给了我一个对象错误: wsCount = ThisWorkbook.Sheets.Count - ThisWorkboo
我有一个 perl 文件,用于查看文件夹中是否存在 ini。如果是,它会从中读取,如果不是,它会根据我为它制作的模板创建一个。 我在 ini 部分使用 Config::Simple。 我的问题是,如果
尝试让一个 ViewController 通过标准 Cocoa 通知与另一个 ViewController 进行通信。 编写了一个简单的测试用例。在我最初的 VC 中,我将以下内容添加到 viewDi
我正在绘制高程剖面图,显示沿路径的高程增益/损失,类似于下面的: Sample Elevation Profile with hand-placed labels http://img38.image
嗨,所以我需要做的是最终让 regStart 和 regPage 根据点击事件交替可见性,我不太担心编写 JavaScript 函数,但我根本无法让我的 regPage 首先隐藏。这是我的代码。请简单
我有一个非常简单的程序来测量一个函数花费了多少时间。 #include #include #include struct Foo { void addSample(uint64_t s)
我需要为 JavaScript 制作简单的 C# BitConverter。我做了一个简单的BitConverter class BitConverter{ constructor(){} GetBy
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是 Simple.Data 的新手。但我很难找到如何进行“分组依据”。 我想要的是非常基本的。 表格看起来像: +________+ | cards | +________+ | id |
我现在正在开发一个 JS UDF,它看起来遵循编码。 通常情况下,由于循环计数为 2,Alert Msg 会出现两次。我想要的是即使循环计数为 3,Alert Msg 也只会出现一次。任何想法都
我是一名优秀的程序员,十分优秀!