Flutter Weekly Issue 52

📖教程

  1. 一个易迁移、兼容性高的 Flutter 富文本方案

  2. 复杂业务如何保证Flutter的高性能高流畅度?

👖插件

  1. flutter_color_models

    A wrapper for the Dart color_models plugin with added support for Flutter's Color class.

  2. FlutterToast

    A Flutter Toast plugin.

  3. flutter_rs

    Build beautiful desktop apps with flutter and rust. 🌠

  4. credit_card_validator

    A Dart package that validates credit card numbers, expiration dates, and security codes (CVV/CVC) based on the type of credit card

  5. rule_engine_dart

    A small rule engine for Dart and Flutter

  6. vin_decoder_dart

    A VIN decoding and validation library for Dart.

  7. crypton

    A simple Dart library for asymmetric encryption and digital signatures

  8. async_message_queue_controller

    An asynchronous message queue controller for Dart

  9. flutter_lua

    This is a Flutter plugin that embeds a Lua interpreter and runtime for executing dynamic scripts from Flutter apps.

  10. wasm.dart

WebAssembly virtual machine for Dart \[work in progress\]
  1. google_translator
Free Google Translate API for Dart
  1. flutter_mrz_scanner
Scans MRZ (Machine Readable Zone) from identity documents.
  1. node_interop
Interop library for writing Node.js apps and modules in Dart.
  1. flutter_opencv
A Flutter™ plug-in providing a binding to OpenCV-4.x.
  1. hydro_sdk
Author native Flutter experiences in Typescript and deliver updates directly to users over the air and out of band
  1. dart_pad_widget
A new Flutter package that allows you to easily embed DartPad into your Flutter Web application.
![](https://img2020.cnblogs.com/other/1941337/202004/1941337-20200422222940063-862287336.png)

17. client_server_lan

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.

18. build_context

Access most used properties in your BuildContext instance.

19. gizmos_hud

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.

20. change_app_package_name

Change App Package Name with single command. It makes the process very easy and fast.

21. asset_toast

1reddit like toast 2 3![](https://img2020.cnblogs.com/other/1941337/202004/1941337-20200422222940437-133964760.gif)

22. dartz

Functional programming in Dart

23. flutter_stats_fl

1A simple FPS monitor for Flutter 2 3![](https://img2020.cnblogs.com/other/1941337/202004/1941337-20200422222940672-1672685726.png)

24. flutter_custom_refresh_indicator

1This package adds CustomRefreshIndicator widget that allows you to create whatever indicator you want. 2 3![](https://img2020.cnblogs.com/other/1941337/202004/1941337-20200422222943997-1678912636.gif)

25. tflite_flutter_plugin

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.

26. markdown_widget

A simple and easy-to-use markdown package created by flutter.完全由flutter创建,一个简单好用,支持mobile与flutter web的markdown插件

📱App

  1. Flutter_Music_App

    A new Flutter Flutter Music App built playing with animation and local music files from Soundcloud

  2. FlutterUnit

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

  3. NextBusSG

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

  4. bonfire

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

🔧工具

  1. flutter_create

    For creating custom flutter project from template

199元学习大礼包:点击领取
原文地址:https://androidweekly.io/news-developer-tools-to-debug-webview-in-beta/
版权声明:禁止一切形式的转载-禁止商用-禁止衍生
公众号:Android开发技术周刊
扫码关注 Android 开发技术周报公众号

点赞
收藏

评论区

加载中...

相关推荐

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

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

MySQL部分从库上面因为大量的临时表tmp_table造成慢查询

背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_

皕杰报表之UUID

​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

2020年前端实用代码段,为你的工作保驾护航

有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )