feat:更新朋友圈模块

This commit is contained in:
2025-07-23 23:00:30 +08:00
parent d9f1781277
commit 7da3ec9507
8 changed files with 193 additions and 82 deletions

View File

@@ -53,16 +53,10 @@ Text buttonText({required String text}) {
Widget errorImageContainer(double height) {
return Container(
height: height,
height: 200,
width: double.infinity,
color: Colors.grey[200],
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.error, color: Colors.red),
const SizedBox(width: 5),
const Text("加载失败", style: TextStyle(color: Colors.red)),
],
),
child: const Icon(Icons.image, color: Colors.grey, size: 30),
);
}