Skip to content

Commit

Permalink
[CodeFactor] Apply fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
code-factor committed Jan 23, 2025
1 parent 2d00de1 commit bf34462
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/screens/anime/watch_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ class _WatchPageState extends State<WatchPage> with TickerProviderStateMixin {
),
);
} else {
final e = subtitles?[index - 1];
final e = subtitles[index - 1];
return GestureDetector(
onTap: () {
selectedSubIndex.value = index;
Expand Down Expand Up @@ -1221,7 +1221,7 @@ class _WatchPageState extends State<WatchPage> with TickerProviderStateMixin {
? Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
const Icon(
Icons.fast_rewind_rounded,
color: Colors.white,
),
Expand All @@ -1242,7 +1242,7 @@ class _WatchPageState extends State<WatchPage> with TickerProviderStateMixin {
color: Colors.white,
),
const SizedBox(width: 5),
Icon(
const Icon(
Icons.fast_forward_rounded,
color: Colors.white,
)
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/extemsions/ExtensionScreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class _BrowseScreenState extends ConsumerState<ExtensionScreen>
..show();
},
),
SizedBox(width: 8.0),
const SizedBox(width: 8.0),
],
),
body: Column(
Expand Down

0 comments on commit bf34462

Please sign in to comment.