Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Jun 2, 2024
1 parent 09b2fe2 commit 6e20774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart';

class Fade extends HookWidget {
const Fade({
class FadeIn extends HookWidget {
const FadeIn({
required this.child,
super.key,
});
Expand Down
4 changes: 2 additions & 2 deletions lib/features/packages/package_item.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:npm/common_widgets/fade.dart';
import 'package:npm/common_widgets/fade_in.dart';
import 'package:npm/common_widgets/shrink_if_no_data.dart';
import 'package:npm/features/packages/packages.dart';
import 'package:npm/features/score/score.dart';
Expand All @@ -14,7 +14,7 @@ class PackageItem extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Fade(
return FadeIn(
child: InkWell(
onTap: () => PackageDetailsRoute(id: package.name).go(context),
child: ListTile(
Expand Down

0 comments on commit 6e20774

Please sign in to comment.