mit开源协议

This commit is contained in:
toly
2020-04-18 06:04:01 +08:00
parent 1774693086
commit 897247555e
3 changed files with 29 additions and 8 deletions

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2020 张风捷特烈 (toly)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -5,7 +5,7 @@
### FlutterUnit apk 下载体验:
![](https://user-gold-cdn.xitu.io/2020/4/17/1718718571499768?w=300&h=390&f=png&s=22153)
![](https://user-gold-cdn.xitu.io/2020/4/18/1718a20ac5a16964?w=300&h=390&f=png&s=23054)
---
@@ -191,7 +191,7 @@ feature " 支持详情页【相关链接的栈管理】,
---
- `2020-4-28`
- `2020-4-18`
```
feature " 小彩蛋: 【长按】底部栏【最左侧按钮】,打开左边菜单栏

View File

@@ -58,12 +58,12 @@ class _UnitNavigationState extends State<UnitNavigation> {
}
Widget _buildSearchButton(Color color) {
return Builder(
builder: (context) => FloatingActionButton(
backgroundColor: color,
child: Icon(Icons.search),
onPressed: () => Navigator.of(context).pushNamed(Router.search),
));
return FloatingActionButton(
elevation: 2,
backgroundColor: color,
child: Icon(Icons.search),
onPressed: () => Navigator.of(context).pushNamed(Router.search),
);
}
_onTapNav(int index) {