美文网首页
flutter功能收集

flutter功能收集

作者: hypercode | 来源:发表于2020-03-31 10:12 被阅读0次

6.注解与路由
https://segmentfault.com/a/1190000018501092

https://www.jianshu.com/p/c7da81334848

https://www.jianshu.com/p/c21a5d1d24f3

5.Icons包含很多有用图标
4.调试模式很赞,Flutter Gallery就可以进行性能分析,slow motion(慢动作)等等,

*   网络请求插件:[https://github.com/flutterchina/dio](https://github.com/flutterchina/dio)*   图片加载插件:[https://github.com/renefloor/flutter_cached_network_image](https://github.com/renefloor/flutter_cached_network_image)*   瀑布流插件:[https://github.com/letsar/flutter_staggered_grid_view](https://github.com/letsar/flutter_staggered_grid_view)*   共享参数插件:[https://github.com/flutter/plugins/tree/master/packages/shared_preferences](https://github.com/flutter/plugins/tree/master/packages/shared_preferences)*   网络状态插件:[https://github.com/flutter/plugins/tree/master/packages/connectivity](https://github.com/flutter/plugins/tree/master/packages/connectivity)*   跳转外部浏览器插件:[https://github.com/flutter/plugins/tree/master/packages/url_launcher](https://github.com/flutter/plugins/tree/master/packages/url_launcher)
    还有一些基础控件ListView,TabBar,TabBarView,Button,Text,TextField,SnakeBar……的使用

作者:dongjunkun
链接:https://www.jianshu.com/p/1031f30dbb2e
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

1.flutter webview加载时显示进度https://jiajunhuang.com/articles/2019_12_03-flutter_webview_indicator.md.html

2.富文本


RichText(
      text: TextSpan(children: [
        WidgetSpan(
          child: Padding(
            padding: const EdgeInsets.only(right: 6),
            child: Image.asset(
              'assets/auth/forget_passowrd.png',
              width: 16,
              height: 16,
            ),
          ),
        ),
        TextSpan(text: '忘记密码', style: AppTheme.black16Mid)
      ]),
    )


相关文章

  • flutter功能收集

    6.注解与路由https://segmentfault.com/a/1190000018501092 https:...

  • 功能收集

    表格脚注下脚标上脚标多级引用外链接空一行 表格 脚注 生成一个脚注[1] 下脚标 上角脚注上角脚注 下脚标 海贼王...

  • IOS Flutter学习之Mac环境搭建

    在这里我将收集如何学习Flutter的文章,如有侵权,我将立即删除! 学习Flutter,主要介绍Flutter环...

  • 下载并运行 Flutter Gallery 项目

    Flutter Gallery 是 Flutter 团队提供的优秀的用于展示 Flutter 功能的示例项目。较早...

  • Flutter异常捕获处理

    本文内容非原创, 仅用于整理记录原文链接?: flutter 崩溃收集 Dart线程模型及异常捕获 Flutter...

  • Flutter调用Android模块的功能

    Flutter调用Android模块的功能,主要通过MethodChannel Flutter端 Android端...

  • 【Flutter】一些技术文章

    收集整理了觉得还不错的一些相关文章:flutter中的生命周期Flutter进阶—通用布局控件Flutter部分插...

  • Flutter 问题收集

    一. 环境配置问题 由于在国内访问Flutter有时可能会受到限制,Flutter官方为中国开发者搭建了临时镜像,...

  • Flutter 问题收集

    场景: iOS 使用 v1.12.13+hotfix.9 版本根据官方 Option B[https://flut...

  • Flutter 崩溃收集

    一、flutter 崩溃收集的方式 1、通用方式 use a try/catch block 2、捕捉async异...

网友评论

      本文标题:flutter功能收集

      本文链接:https://www.haomeiwen.com/subject/aqoiuhtx.html