shenghy / my-blog

我的博客系统
22 stars 8 forks source link

[Vssue]Flutter-base02 #12

Open shenghy opened 5 years ago

shenghy commented 5 years ago

https://jspang.com/posts/2019/01/21/flutter-base2.html

Say-me-cool commented 5 years ago

动态列表展示只能在这里面吗? void main()=>runApp(MyApp( items: new List.generate(10, (i)=>"item $i") ));

我自己定义了一个,然后在 void list()=>runApp(MoveList( items: new List.generate(10, (i)=>"item $i") ));

然后写的方法 class MoveList extends StatelessWidget { final List items; MoveList({Key key, @required this.items}):super(key:key); @override Widget build(BuildContext context) { return ListView.builder( itemCount: items.length, itemBuilder: (context, index){ return new ListTile( title: Text('${items[index]}'), ); } ); } }

后再/ / Container( // child: ListView.builder( // itemCount: 100, // itemBuilder: (context, index){ // return new ListTile( // title: Text('${items[index]}'), // ); // } // ), // height: 200, // ),

这样 获取不到数据, 是因为没在myapp里定义的问题吗

zengxuelu commented 5 years ago

${items[index]} 报错, The method '[]' was called on null. 改成${index}

Jgcoder2023 commented 5 years ago

为什么?

feiqilai1314 commented 5 years ago

topRight是顶部右侧对齐吧

keyescgm commented 5 years ago

第三季里面的视频大部分都是重复的····

YLJunAnglee commented 5 years ago

一路跟下来的,用image 加载网络图片显示不出来?不知道为什么? 是不是vscode需要允许网络请求?还是别的什么问题?

niceYrc commented 5 years ago

你好,胖叔叔,Alignment属性 里面的 botomLeft: 下部左对齐 单词少写个t ,应该是bottomLeft

nanyawei commented 4 years ago

网络图片加载异常 替换一张image该怎么处理啊