Flutter Weekly Issue 52

教程
插件
-
A wrapper for the Dart color_models plugin with added support for Flutter's Color class.
-
A Flutter Toast plugin.

-
Build beautiful desktop apps with flutter and rust.

-
A Dart package that validates credit card numbers, expiration dates, and security codes (CVV/CVC) based on the type of credit card
-
A small rule engine for Dart and Flutter
-
A VIN decoding and validation library for Dart.
-
A simple Dart library for asymmetric encryption and digital signatures
async_message_queue_controller
An asynchronous message queue controller for Dart
-
This is a Flutter plugin that embeds a Lua interpreter and runtime for executing dynamic scripts from Flutter apps.
-
WebAssembly virtual machine for Dart [work in progress]
-
Free Google Translate API for Dart
-
Scans MRZ (Machine Readable Zone) from identity documents.
-
Interop library for writing Node.js apps and modules in Dart.
-
A Flutter plug-in providing a binding to OpenCV-4.x.
-
Author native Flutter experiences in Typescript and deliver updates directly to users over the air and out of band
-
A new Flutter package that allows you to easily embed DartPad into your Flutter Web application.

-
A LAN communication Flutter package based off Node Commander but removing parts such as Commander Nodes and making communication between client and server two way.
-
Access most used properties in your BuildContext instance.
-
A Flutter package for displaying custom HUD's, Toasts, or other screen overlays. Any widget can be displayed, in any position on the screen for a completely customized interface.
-
Change App Package Name with single command. It makes the process very easy and fast.
-
reddit like toast

-
Functional programming in Dart
-
A simple FPS monitor for Flutter

flutter_custom_refresh_indicator
This package adds CustomRefreshIndicator widget that allows you to create whatever indicator you want.

-
TensorFlow Lite plugin provides a dart API for accessing TensorFlow Lite interpreter and performing inference. It binds to TensorFlow Lite C API using dart:ffi.
-
A simple and easy-to-use markdown package created by flutter.完全由flutter创建,一个简单好用,支持mobile与flutter web的markdown插件
App
-
A new Flutter Flutter Music App built playing with animation and local music files from Soundcloud

-
Flutter源码中的可用的组件一共350个左右,纷繁复杂,也没有明确的分类标准 FlutterUnit 对大大小小,常用不常用的组件能收的尽量收录。并根据个人感觉进行评星 目前收录组件207个,每个都有至少一个演示展现和代码展示。

-
An app to show everything bus related in Singapore, including bus arrival times and a directory, with extra features.

-
(RPG maker) Create RPG-style or similar games more simply with Flame.

工具
-
For creating custom flutter project from template
199元学习大礼包:点击领取
原文地址:https://androidweekly.io/news-developer-tools-to-debug-webview-in-beta/
版权声明:禁止一切形式的转载-禁止商用-禁止衍生
公众号:Android开发技术周刊
Flutter Weekly Issue 52的更多相关文章
- Flutter Weekly Issue 47
教程 开辟 Dart 到 Native 的超级通道,饿了么跨平台的最佳实践 当永恒的软键盘问题遇到Flutter 插件 fijkplayer ijkplayer for flutter. ijkpla ...
- Flutter Weekly Issue 49
插件/Librarys flutter_date_pickers Allows to use date pickers without dialog. Provides some customizab ...
- Flutter Weekly Issue 53
插件 left-scroll-actions A useful left scroll actions widget like WeChat.一款仿微信效果的 Flutter 左滑菜单插件.现在支持i ...
- Android Weekly Notes Issue #238
Android Weekly Issue #238 January 1st, 2017 Android Weekly Issue #238 本期内容包括: Firebase发送Notification ...
- Android Weekly Notes Issue #258
Android Weekly Issue #258 May 21st, 2017 Android Weekly Issue #258 本期内容: 围绕着Google I/O的热潮, 本周的posts除 ...
- Android Weekly Notes Issue #237
Android Weekly Issue #237 December 25th, 2016 Android Weekly Issue #237 这是本年的最后一篇issue, 感谢大家. 本期内容包括 ...
- Android Weekly Notes Issue #236
Android Weekly Issue #236 December 18th, 2016 Android Weekly Issue #236 本期内容包括: Google的物联网平台Android ...
- Android Weekly Notes Issue #235
Android Weekly Issue #235 December 11th, 2016 Android Weekly Issue #235 本期内容包括: 开发一个自定义View并发布为开源库的完 ...
- Android Weekly Notes Issue #234
Android Weekly Issue #234 December 4th, 2016 Android Weekly Issue #234 本期内容包括: ConstraintLayout的使用; ...
随机推荐
- java获取近几天的日期
最近在写接口的时候老遇见从mysql中获取近几天数据的需求,获取日期这块不是很熟,网上看了很多但是代码量都太大,还是问了下别人,写了三行代码就解决了,不多说 贴代码了 下面是我获取近十天,每天的日期: ...
- GBDT梯度提升树算法及官方案例
梯度提升树是一种决策树的集成算法.它通过反复迭代训练决策树来最小化损失函数.决策树类似,梯度提升树具有可处理类别特征.易扩展到多分类问题.不需特征缩放等性质.Spark.ml通过使用现有decisio ...
- C 实战练习题目1
题目:有1.2.3.4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 程序分析:可填在百位.十位.个位的数字都是1.2.3.4.组成所有的排列后再去 掉不满足条件的排列. 实例: #in ...
- 从零开始发布一个ArcGIS Server地图服务
@ 目录 一.软件环境搭建 1.数据库安装 1.1.Oracle(可选) 1.1.1.安装Oracle服务端 1.1.2.安装Oracle客户端 1.2.PostgreSQL(可选) 1.2.1.安装 ...
- Python python lamda 表达式
'''关键字lambda表示匿名函数,冒号前面的x表示函数参数. 匿名函数有个限制,就是只能有一个表达式,不用写return,返回值就是该表达式的结果. 用匿名函数有个好处,因为函数没有名字,不必担心 ...
- LeetCode#1047-Remove All Adjacent Duplicates In String-删除字符串中的所有相邻重复项
一.题目 给出由小写字母组成的字符串 S,重复项删除操作会选择两个相邻且相同的字母,并删除它们. 在 S 上反复执行重复项删除操作,直到无法继续删除. 在完成所有重复项删除操作后返回最终的字符串.答案 ...
- Python math库和random库
1.math库 >>> from math import * >>> 2*pi 6.283185307179586 >>> e 2.7182818 ...
- MATLAB GUI设计(1)
一.新建GUI 1.命令行窗口输入 guide会出来如下界面,可以新建空白GUI,也可以打开已有GUI 2.通过工具栏新建 二.数据传递例子 1.添加输入框按钮,设置尺寸大小,内容,格式,标签 2.复 ...
- Nutch & Solr & IKAnalyzer Deployment Debug
Nutch配置错误 (1) IO错误 记得出错的时候把出错的目录删除,否则下次还是出错. (2) Command crawl is deprecated, please use bin/crawl ...
- XHTML 简介
一.XHTML 简介 XHTML 指可扩展超文本标签语言(EXtensible HyperText Markup Language). XHTML 的目标是取代 HTML. XHTML 与 HTML ...
