美文网首页
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功能收集

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