Primroses de08d89c87 feat:登录 | 4 years ago | |
---|---|---|
android | 4 years ago | |
ios | 4 years ago | |
lib | 4 years ago | |
test | 4 years ago | |
.gitignore | 4 years ago | |
.metadata | 4 years ago | |
README.md | 4 years ago | |
api.md | 4 years ago | |
build_runner.bat | 4 years ago | |
format_check.bat | 4 years ago | |
pubspec.lock | 4 years ago | |
pubspec.yaml | 4 years ago |
A new Flutter project.
pubspec.yml
中声明assets位置,因为flutte没有预先定义的文件结构// pubspec.yaml
assets:
- assets/img
assets:
- assets/2.0x/image
- assets/img # Base 1.0
return AssetImage()
Widget build(BuildContext context){
return Image.asset("loacl_url");
}
transparent_img 插件 能从本地 内存 中加载placeholder
从本地中加载缓存的图片
可以用 material_icon
統一的滚动效果
## 生成器返回的格式没有问题
lib
assets # 资源文件
bean # 基础实体类
constant # 常量
model # v-model
pages # 具体的页面
router # 路由
services # 服务
store # 数据中心
utils # 工具类库
widgets # 通用widgets
// Container(
// child: ProviderWidget<GameVideoListModel>(
// builder: (context, model, builder) {
// _initializePlay(model.list[0].videoUrl);
// return FutureBuilder(
// future: _initializeVideoPlayerFuture,
// builder: (context,snapshot){
// return ListView.builder(itemBuilder:(context,index){
// return VideoItem(controller: _controller);
// },shrinkWrap: true,);
// },
// );
// },
// onModelReady: (m) => m.initData(),
// ),
// )