🚀 Launch 1.2.2+1

This commit is contained in:
LittleSheep 2024-09-17 23:50:49 +08:00
parent b5e2fa4c25
commit f3ceb5f967
2 changed files with 59 additions and 56 deletions

View File

@ -341,7 +341,9 @@ class _PostItemState extends State<PostItem> {
if (!snapshot.hasData || snapshot.data!.isEmpty) { if (!snapshot.hasData || snapshot.data!.isEmpty) {
return const SizedBox.shrink(); return const SizedBox.shrink();
} }
return Card( return Container(
constraints: const BoxConstraints(maxWidth: 480),
child: Card(
margin: EdgeInsets.zero, margin: EdgeInsets.zero,
child: Column( child: Column(
children: snapshot.data! children: snapshot.data!
@ -400,6 +402,7 @@ class _PostItemState extends State<PostItem> {
) )
.toList(), .toList(),
), ),
),
) )
.animate() .animate()
.fadeIn( .fadeIn(

View File

@ -2,7 +2,7 @@ name: solian
description: "The Solar Network App" description: "The Solar Network App"
publish_to: "none" publish_to: "none"
version: 1.2.1+41 version: 1.2.2+1
environment: environment:
sdk: ">=3.3.4 <4.0.0" sdk: ">=3.3.4 <4.0.0"