Update README.md

This commit is contained in:
lollipopkit
2023-05-26 13:18:37 +08:00
parent c4594559a2
commit c1c009863d
3 changed files with 23 additions and 21 deletions

View File

@@ -18,7 +18,7 @@ English | [简体中文](README_zh.md)
</p> </p>
<p align="center"> <p align="center">
A Flutter project which provide charts to display Linux[](../../issues/43) server status and tools to manage server. A Flutter project which provide charts to display <a href="../../issues/43">Linux</a> server status and tools to manage server.
<br> <br>
Especially thanks to <a href="https://github.com/TerminalStudio/dartssh2">dartssh2</a> & <a href="https://github.com/TerminalStudio/xterm.dart">xterm.dart</a>. Especially thanks to <a href="https://github.com/TerminalStudio/dartssh2">dartssh2</a> & <a href="https://github.com/TerminalStudio/xterm.dart">xterm.dart</a>.
</p> </p>

View File

@@ -18,7 +18,7 @@
</p> </p>
<p align="center"> <p align="center">
使用Flutter开发的服务器工具箱提供服务器状态图表和管理工具。 使用 Flutter 开发的 <a href="../../issues/43">Linux</a> 服务器工具箱,提供服务器状态图表和管理工具。
<br> <br>
特别感谢 <a href="https://github.com/TerminalStudio/dartssh2">dartssh2</a> & <a href="https://github.com/TerminalStudio/xterm.dart">xterm.dart</a>. 特别感谢 <a href="https://github.com/TerminalStudio/dartssh2">dartssh2</a> & <a href="https://github.com/TerminalStudio/xterm.dart">xterm.dart</a>.
</p> </p>

View File

@@ -575,9 +575,11 @@ class _SettingPageState extends State<SettingPage> {
final paths = _setting.diskIgnorePath.fetch()!; final paths = _setting.diskIgnorePath.fetch()!;
return ListTile( return ListTile(
title: Text(_s.diskIgnorePath), title: Text(_s.diskIgnorePath),
trailing: Text(_s.edit, style: textSize15,), trailing: Text(_s.edit, style: textSize15),
onTap: () { onTap: () {
showRoundDialog(context: context, child: Input( showRoundDialog(
context: context,
child: Input(
controller: TextEditingController(text: json.encode(paths)), controller: TextEditingController(text: json.encode(paths)),
label: 'JSON', label: 'JSON',
type: TextInputType.visiblePassword, type: TextInputType.visiblePassword,