mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
@@ -122,7 +122,10 @@ class _ServerDetailPageState extends State<ServerDetailPage>
|
|||||||
|
|
||||||
CustomAppBar _buildAppBar(Server si) {
|
CustomAppBar _buildAppBar(Server si) {
|
||||||
return CustomAppBar(
|
return CustomAppBar(
|
||||||
title: Text(si.spi.name),
|
title: Hero(
|
||||||
|
tag: 'home_card_title_${si.spi.id}',
|
||||||
|
child: Text(si.spi.name),
|
||||||
|
),
|
||||||
actions: [
|
actions: [
|
||||||
QrShareBtn(
|
QrShareBtn(
|
||||||
data: si.spi.toJsonString(),
|
data: si.spi.toJsonString(),
|
||||||
|
|||||||
@@ -461,11 +461,14 @@ class _ServerPageState extends State<ServerPage>
|
|||||||
children: [
|
children: [
|
||||||
ConstrainedBox(
|
ConstrainedBox(
|
||||||
constraints: BoxConstraints(maxWidth: _media.size.width / 2.3),
|
constraints: BoxConstraints(maxWidth: _media.size.width / 2.3),
|
||||||
child: Text(
|
child: Hero(
|
||||||
s.spi.name,
|
tag: 'home_card_title_${s.spi.id}',
|
||||||
style: UIs.text13Bold,
|
child: Text(
|
||||||
maxLines: 1,
|
s.spi.name,
|
||||||
overflow: TextOverflow.ellipsis,
|
style: UIs.text13Bold,
|
||||||
|
maxLines: 1,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const Icon(
|
const Icon(
|
||||||
|
|||||||
@@ -478,8 +478,8 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: "v1.0.218"
|
ref: "v1.0.219"
|
||||||
resolved-ref: b8108c9ffe1e67da22e8f9003e0adfe2692f3b0b
|
resolved-ref: "1b52e9179ded8e0e90d9419a4e6d47c0ef4d1dd0"
|
||||||
url: "https://github.com/lppcg/fl_lib"
|
url: "https://github.com/lppcg/fl_lib"
|
||||||
source: git
|
source: git
|
||||||
version: "0.0.1"
|
version: "0.0.1"
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ dependencies:
|
|||||||
fl_lib:
|
fl_lib:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/lppcg/fl_lib
|
url: https://github.com/lppcg/fl_lib
|
||||||
ref: v1.0.218
|
ref: v1.0.219
|
||||||
|
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
# dartssh2:
|
# dartssh2:
|
||||||
|
|||||||
Reference in New Issue
Block a user