opt. & fix

- fix: pve text color
- opt.: rm ssh tab appbar
- opt.: ssh tab only display fab on `Add` page
This commit is contained in:
lollipopkit
2024-03-22 22:52:31 +08:00
parent 7feebb8c1f
commit 2681e4eb28
9 changed files with 85 additions and 71 deletions

View File

@@ -231,19 +231,13 @@ final class _PvePageState extends State<PvePage> {
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
const SizedBox(width: 15),
RichText(
text: TextSpan(
children: [
TextSpan(
text: _wrapNodeName(item),
style: UIs.text13Bold,
),
TextSpan(
text: ' / ${item.summary}',
style: UIs.text12Grey,
),
],
),
Text(
_wrapNodeName(item),
style: UIs.text13Bold,
),
Text(
' / ${item.summary}',
style: UIs.text12Grey,
),
const Spacer(),
_buildCtrlBtns(item),
@@ -314,19 +308,13 @@ final class _PvePageState extends State<PvePage> {
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
const SizedBox(width: 15),
RichText(
text: TextSpan(
children: [
TextSpan(
text: _wrapNodeName(item),
style: UIs.text13Bold,
),
TextSpan(
text: ' / ${item.summary}',
style: UIs.text12Grey,
),
],
),
Text(
_wrapNodeName(item),
style: UIs.text13Bold,
),
Text(
' / ${item.summary}',
style: UIs.text12Grey,
),
const Spacer(),
_buildCtrlBtns(item),