flutter_in_action_2nd icon indicating copy to clipboard operation
flutter_in_action_2nd copied to clipboard

《Flutter实战 第二版》 书稿

Results 120 flutter_in_action_2nd issues
Sort by recently updated
recently updated
newest added

按钮章节 "3.2.3 OutlineButton", 应该是"Outline**d**Button".

示例代码中 super.build(context); // 必须调用 这个在实际代码测试中,没有调用,依旧可以缓存PageView

https://book.flutterchina.club/chapter5/material_scaffold.html#_5-7-5-%E5%BA%95%E9%83%A8tab%E5%AF%BC%E8%88%AA%E6%A0%8F 容器类组件-骨架 - 底部Tab导航栏 - 页面最后下一页的地方贴错了链接,跳转到 可滚动组件了

可以将 Container组件margin和padding 理解为赋予给子组件的margin和padding。这样理解的话就符合margin和padding 的字面意思,且Container的其他属性也是赋予子组件的。

什么时候可以正常访问电子书网站呀? 现在网站打不开了, 谢谢谢谢, 非常感谢!

我来当一回雷锋吧! 将代码在自己服务器上搭建了一份 https://www.beihuolang.net

![image](https://user-images.githubusercontent.com/30775539/172034059-a5835bc1-cfb9-47ae-83bb-490d9446486a.png)

混合状态管理的demo里面,下面这一行会报错The argument type 'Color?' can't be assigned to the parameter type 'Color'。 `color: Colors.teal[700],`

原文提到:Material 组件库中提供了 Material 风格的单选开关Switch和复选框Checkbox,虽然它们都是继承自StatefulWidget,但它们本身不会保存当前选中状态,选中状态都是由父组件来管理的.... 出于好奇阅读了一下源码,发现 Checkbox是继承自 StatefulWidget 而Switch继承自 StatelessWidget, 内部在build时实际返回了_MaterialSwitch或CupertinoSwitch,他们是继承自StatefulWidget 的。 感觉有一点歧义,阅读时一度以为Switch就是StatefulWidget,所以文中 所表达的`` Material 风格的单选开关Switch``是不是就是指_MaterialSwitch。

如下图,看了下文件路径,好像没了对应的图片 ![image](https://user-images.githubusercontent.com/14200813/169946661-6938d155-03c7-4b3b-a635-071c86506802.png)