fix: 增加推荐页面有效值检查,修改渲染bug

master
Spark 7 months ago
parent 74e0a8cabc
commit 81d3afcd1e

@ -1 +1 @@
7d34a1186938d51f8f2b6577f7a6094e
f649f7b73ed118947e70d0b9aa9e6a1f

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -1123,7 +1123,7 @@ library {
}
library {
digests {
sha256: "\265\213\276\250k\317\326\255\035\321\027\021#\364\272\345~\240\033 \205\357\f\355\3622\216\367\337\350\353\225"
sha256: "}l-\021w\244\203\345\267\334#\3560\273\035\235\200\256*\327*C>\376\351q\242\312\260\237\377\336"
}
}
library_dependencies {

@ -423,7 +423,7 @@ class _SongRecommendationViewState extends State<SongRecommendationView>
: AlwaysStoppedAnimation(1.0),
child: GestureDetector(
onTap: () {
//
//
if (selectedIndex == index) {
Navigator.push(
context,
@ -440,7 +440,21 @@ class _SongRecommendationViewState extends State<SongRecommendationView>
},
),
),
);
).then((_) {
//
if (mounted) {
setState(() {
selectedIndex = null;
_expandController.reverse();
});
}
});
//
setState(() {
selectedIndex = null;
_expandController.reverse();
});
} else {
//
_handleCircleTap(index);

Loading…
Cancel
Save