feat:增加用户信息编辑功能

This commit is contained in:
2026-07-05 14:14:43 +08:00
parent 9d3a3f2e80
commit 780526ddf4
18 changed files with 379 additions and 60 deletions

View File

@@ -33,11 +33,14 @@ class _MomentUserPageState extends State<MomentUserPage> {
}
return Scaffold(
backgroundColor: Colors.transparent,
appBar: AppBar(
title: Text('我的朋友圈', style: const TextStyle(color: Colors.white)),
backgroundColor: Theme.of(context).colorScheme.primary,
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
title: Text('我的朋友圈', style: Theme.of(context).textTheme.titleLarge),
centerTitle: true,
automaticallyImplyLeading: false,
leading: IconButton(
icon: const Icon(Icons.arrow_back, color: Colors.white),
icon: const Icon(Icons.arrow_back),
onPressed: () => Navigator.pop(context),
),
),