forked from lxm_flutter/FlutterUnit
✨ 修改文档
This commit is contained in:
58
README.md
58
README.md
@@ -7,12 +7,14 @@
|
||||
|
||||
|
||||
|
||||
| FlutterUnit.apk 下载 | FlutterUnit mac版 下载 | Github仓库地址 |
|
||||
| FlutterUnit.apk 下载 | FlutterUnit mac版 下载 | FlutterUnit win版 下载 |
|
||||
|------|------------|------------|
|
||||
||| |
|
||||
||| |
|
||||
|
||||
- Android下载链接: http://toly1994.com/file/FlutterUnit.apk
|
||||
- Mac下载链接: http://toly1994.com/file/flutter_unit_mac.zip
|
||||
- Win下载链接: http://toly1994.com/file/FlutterUnitWin.zip
|
||||
|
||||
- ✨ [Flutter Unit mac版支持 ](https://github.com/toly1994328/FlutterUnit/tree/flutter_unit_mac)
|
||||
|
||||
---
|
||||
@@ -187,55 +189,3 @@ FlutterUnit 对`大大小小,常用不常用`的组件能收的尽量收录。
|
||||
|------|------------|------------|
|
||||
||| 
|
||||
|
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
|
||||
### Flutter Unit Bug - Feature
|
||||
|
||||
- `2020-4-16`
|
||||
|
||||
```
|
||||
fixed " 修改样式无法点击的问题。
|
||||
fixed " 一些已知文案的错误。
|
||||
fixed " hero动画闪现不同步问题。
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
- `2020-4-17`
|
||||
|
||||
```
|
||||
fixed " 进入收藏页,再回到首页,顶部显示不同步的问题。
|
||||
fixed " 主页item双击黑屏问题。
|
||||
|
||||
|
||||
feature " 支持详情页【相关链接的栈管理】,
|
||||
" 即: 点击多个链接,不直接返回主页.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
- `2020-4-18`
|
||||
|
||||
```
|
||||
feature " 小彩蛋: 【长按】底部栏【最左侧按钮】,打开左边菜单栏
|
||||
" 【长按】底部栏【最右侧按钮】,打开右边菜单栏
|
||||
|
||||
fixed " 收藏集的AppBar背景色同主页选中色。
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
|
||||
- `2020-4-19`
|
||||
|
||||
```
|
||||
optimize " 添加收录【LayoutBuilder】组件
|
||||
optimize " 添加收录【IgnorePointer】组件
|
||||
optimize " 添加收录【AbsorbPointer】组件
|
||||
optimize " 添加收录【BackdropFilter】组件
|
||||
```
|
||||
|
||||
Binary file not shown.
@@ -6,7 +6,7 @@ import 'package:flutter/material.dart';
|
||||
|
||||
// {
|
||||
// "widgetId": 298,
|
||||
// "name": '可用于显示一个指定宽高的区域',
|
||||
// "name": 'IntrinsicHeight基本使用',
|
||||
// "priority": 1,
|
||||
// "subtitle": "【child】 : 子组件 【Widget】\n"
|
||||
// "如示例:左侧高可变动,中间高固定,右侧高取前两者的最高值。",
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
#include "generated_plugin_registrant.h"
|
||||
|
||||
|
||||
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
||||
void fl_register_plugins(FlPluginRegistry* registry) {
|
||||
}
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
#ifndef GENERATED_PLUGIN_REGISTRANT_
|
||||
#define GENERATED_PLUGIN_REGISTRANT_
|
||||
|
||||
#include <flutter/plugin_registry.h>
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
|
||||
// Registers Flutter plugins.
|
||||
void RegisterPlugins(flutter::PluginRegistry* registry);
|
||||
void fl_register_plugins(FlPluginRegistry* registry);
|
||||
|
||||
#endif // GENERATED_PLUGIN_REGISTRANT_
|
||||
|
||||
15
linux/flutter/generated_plugins.cmake
Normal file
15
linux/flutter/generated_plugins.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
#
|
||||
# Generated file, do not edit.
|
||||
#
|
||||
|
||||
list(APPEND FLUTTER_PLUGIN_LIST
|
||||
)
|
||||
|
||||
set(PLUGIN_BUNDLED_LIBRARIES)
|
||||
|
||||
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
||||
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
|
||||
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
|
||||
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
|
||||
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
|
||||
endforeach(plugin)
|
||||
Reference in New Issue
Block a user