Merge remote-tracking branch 'origin/lollipopkit/issue727'

This commit is contained in:
lollipopkit🏳️‍⚧️
2025-04-25 18:33:36 +08:00
26 changed files with 62 additions and 82 deletions

View File

@@ -53,7 +53,7 @@ class _LocalFilePageState extends State<LocalFilePage>
super.build(context);
final title = _path.path.fileNameGetter ?? libL10n.file;
return Scaffold(
appBar: AppBar(
appBar: CustomAppBar(
title: AnimatedSwitcher(
duration: Durations.short3,
child: Text(title, key: ValueKey(title)),

View File

@@ -62,7 +62,7 @@ class _SftpPageState extends State<SftpPage> with AfterLayoutMixin {
if (isDesktop) children.add(_buildRefreshBtn());
return Scaffold(
appBar: AppBar(
appBar: CustomAppBar(
title: TwoLineText(up: 'SFTP', down: widget.spi.name),
actions: children,
),

View File

@@ -16,7 +16,7 @@ class _SftpMissionPageState extends State<SftpMissionPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
appBar: CustomAppBar(
title: Text(l10n.mission, style: UIs.text18),
),
body: _buildBody(),