Flutter Weekly Issue 55

Stella981
• 阅读 569

新闻

  1. Flutter 1.17 | 2020 首个稳定版发布!

  2. Dart 2.8 发布了

  3. Flutter web 最新进展: 发掘更多可能!

教程

  1. Flutter线上代码覆盖率解决方案——FlutterCodeX

插件

  1. flutter-h5pay

    A Flutter plugin for h5pay(Support WeChat and Alipay)

  2. flutter-link-preview

    A Rich Link Preview flutter plugin.

    Flutter Weekly Issue 55

  3. futuristic

    Makes it possible to safely execute and retry a Future inside a StatelessWidget

    Flutter Weekly Issue 55

  4. nearby-connections

    Flutter plugin (android) for sharing bytes and files Offline, (Based on the android Nearby Connections API)

  5. tiled.dart

    A Tiled Dart library

  6. flutter-oktoast

    a pure flutter toast library

    Flutter Weekly Issue 55

  7. Flutter-MaterialAlertDialog

    A new Flutter MaterialAlertDialog package project.Flutter package to implement animated, smiling_face_with_three_hearts Attractive, artstylish Material Dialog in Flutter easily

  8. flutter-tex

    A Flutter Package to render Mathematics, Physics and Chemistry Equations based on LaTeX

    Flutter Weekly Issue 55

  9. r-upgrade

    Android and IOS upgrade plugin/Flutter应用升级/下载插件(带通知栏进度)

  10. flutter-wechat-assets-picker

An assets picker in WeChat style, support multi assets picking.
  1. get-it
Simple direct Service Locator that allows to decouple the interface from a concrete implementation and to access the concrete implementation from everywhere in your App
  1. file
A generic file system abstraction for Dart.
  1. stacked
A Flutter application architecture created from real world scenarios

![](https://oscimg.oschina.net/oscnet/up-13b6b9a307fb60e2b3b58d3b76009bc0e33.JPEG)
  1. video-player-web-hls
Supports hls on chrome and other browsers.
  1. pinnable-listview
A ListView widget capable of pinning a child to the top of the list.

![](https://oscimg.oschina.net/oscnet/up-7ef751436e1069ae159ae7a73e76346c93d.gif)
  1. flutter-sound
This plugin provides simple recorder and player functionalities for both `android` and `ios` platforms. This plugin handles file from remote url. This plugin can handle playback stream from native (To sync exact time with bridging).

![](https://oscimg.oschina.net/oscnet/up-2f8c2e7ba62240b22c70b04ab796be76822.gif)
  1. flutter-test-ui
Wrapper for flutter\_test that adds a tester argument to setUp and tearDown functions
  1. AdvFab
An Advanced floating action button that expands itself to reveal its hidden widget.

![](https://oscimg.oschina.net/oscnet/up-bd570a44b9de767a6d1275b31996c719af3.gif)
  1. mailto
Simple Dart package for creating mailto links in your Flutter apps or web pages
  1. flutter-secure-storage
A Flutter plugin to store data in secure storage
  1. audio-service
Flutter plugin to play audio in the background while the screen is off.
  1. uni-links
A Flutter plugin project to help with App/Deep Links (Android) and Universal Links and Custom URL schemes (iOS).
  1. flutter-speed-dial
Flutter plugin to implement a Material Design Speed Dial

![](https://oscimg.oschina.net/oscnet/up-64726c57d4eafc6e3ee9600512ca16b6e31.gif)
  1. sqfEntity
SqfEntity is based on SQFlite plugin and lets you build and execute SQL commands easily and quickly with the help of fluent methods similar to .Net Entity Framework

![](https://oscimg.oschina.net/oscnet/up-124a484eb1cb7d9dbb1d9674bb97d7e3713.gif)
  1. esys-flutter-share
A Flutter plugin for sharing files & text with other applications.
  1. background-location
A Flutter plugin to get location updates in the background for both Android and iOS (Requires iOS 10.0+). Uses CoreLocation for iOS and FusedLocationProvider for Android
  1. flutter-tensorflow-lite
A Flutter plugin to access TensorFlow Lite apis.
  1. edge-detection
A flutter plugin to detect edges of objects, scan paper, detect corner, detect rectangle. It allows cropping of the detected object image and returns the path of the cropped image.

![](https://oscimg.oschina.net/oscnet/up-8c532d804c846cd58508b6ddfce7ede289e.gif)
  1. painter
A simple flutter widget to paint with your fingers

![](https://oscimg.oschina.net/oscnet/up-2d9f6dbac9c211e49ff8ccc18a1bb7f71e8.gif)

App

  1. Serene

    a white noise app developed with Flutter. It helps you meditate, sleep better, focus, relax and be calm.

  2. habit-formation

    Habit formation is an Android & iOS app which is built using Flutter UI Toolkit.

  3. flutter-whirlpool

    Flutter UI challenge, Smart washing machine app

    Flutter Weekly Issue 55

  4. open-bonfire

    Open source code for Bonfire app (may be deprecated code compared to private repository)

    Flutter Weekly Issue 55

工具

  1. flutter-localizer

    IntelliJ Plugin to ease the process of localizing hard coded strings in Flutter projects

    Flutter Weekly Issue 55

  2. flutter-installer

    An installation toolkit for Flutter SDK on Windows PCs

    Flutter Weekly Issue 55

199元学习大礼包:点击领取
原文地址:https://flutterweekly.dev/flutter-weekly-issue-55/
版权声明:禁止一切形式的转载-禁止商用-禁止衍生
公众号:Android开发技术周刊 Flutter Weekly Issue 55

点赞
收藏
评论区
推荐文章
blmius blmius
2年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Jacquelyn38 Jacquelyn38
2年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
Stella981 Stella981
2年前
Opencv中Mat矩阵相乘——点乘、dot、mul运算详解
Opencv中Mat矩阵相乘——点乘、dot、mul运算详解2016年09月02日00:00:36 \牧野(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fme.csdn.net%2Fdcrmg) 阅读数:59593
Wesley13 Wesley13
2年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
2年前
Java日期时间API系列36
  十二时辰,古代劳动人民把一昼夜划分成十二个时段,每一个时段叫一个时辰。二十四小时和十二时辰对照表:时辰时间24时制子时深夜11:00凌晨01:0023:0001:00丑时上午01:00上午03:0001:0003:00寅时上午03:00上午0
Wesley13 Wesley13
2年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
2年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
2年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
2个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这