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

@@ -195,7 +195,7 @@ class _EpisodePanelState extends State<EpisodePanel>
Widget buildPage(ThemeData theme) {
final isMulti = widget.type == EpisodeType.season && widget.list.length > 1;
Widget tabbar() => TabBar(
Widget tabBar() => TabBar(
controller: _tabController,
padding: const EdgeInsets.only(right: 60),
isScrollable: true,
@@ -213,7 +213,7 @@ class _EpisodePanelState extends State<EpisodePanel>
mainAxisSize: MainAxisSize.min,
children: [
_buildToolbar(theme),
tabbar(),
tabBar(),
],
),
children: List.generate(
@@ -234,7 +234,7 @@ class _EpisodePanelState extends State<EpisodePanel>
children: [
_buildToolbar(theme),
if (isMulti) ...[
tabbar(),
tabBar(),
Expanded(
child: tabBarView(
controller: _tabController,