fix typos

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-05 11:35:47 +08:00
parent b4a46133be
commit ea52dd4484
51 changed files with 162 additions and 162 deletions

View File

@@ -91,12 +91,12 @@ class _PgcIntroPageState extends State<PgcIntroPage> {
),
);
if (!introController.isPgc) {
final breif = _buildBreif(item);
if (breif != null) {
final brief = _buildBrief(item);
if (brief != null) {
sliver = SliverMainAxisGroup(
slivers: [
sliver,
breif,
brief,
],
);
}
@@ -109,7 +109,7 @@ class _PgcIntroPageState extends State<PgcIntroPage> {
);
}
Widget? _buildBreif(PgcInfoModel item) {
Widget? _buildBrief(PgcInfoModel item) {
final img = item.brief?.img;
if (img != null && img.isNotEmpty) {
final maxWidth = widget.maxWidth - 24;