功能更新

This commit is contained in:
DelLevin-Home
2026-07-02 19:49:41 +08:00
parent 30a002feb2
commit 24fb7aab55
13 changed files with 475 additions and 177 deletions

View File

@@ -49,13 +49,11 @@ class _MoviePostersPageState extends State<MoviePostersPage> {
backgroundColor: colors.surface,
appBar: AppBar(
title: const Text('海报墙'),
actions: [
IconButton(
icon: const Icon(Icons.add_photo_alternate),
onPressed: _pickPoster,
),
const SizedBox(width: 8),
],
),
floatingActionButton: FloatingActionButton.extended(
onPressed: _pickPoster,
icon: const Icon(Icons.add_photo_alternate, size: 20),
label: const Text('添加海报'),
),
body: _isLoading
? const Center(child: CircularProgressIndicator())