Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 0 additions & 88 deletions lib/common/animation/custom_fade_slide_animation.dart

This file was deleted.

23 changes: 8 additions & 15 deletions lib/features/home/home_page_content.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import 'package:auto_route/auto_route.dart';
import 'package:flutter/material.dart';
import 'package:flutter_app/app/navigation/app_router.dart';
import 'package:flutter_app/common/animation/custom_fade_slide_animation.dart';
import 'package:flutter_app/common/component/custom_button/custom_button_primary.dart';
import 'package:flutter_app/common/component/custom_text/custom_text.dart';
import 'package:flutter_app/common/extension/build_context.dart';
Expand All @@ -18,22 +17,16 @@ class HomePageContent extends StatelessWidget {
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
CustomFadeSlideAnimation(
delay: const Duration(milliseconds: 300),
child: CustomText(
key: const Key('home_title'), // Used for Integration testing
text: 'Home',
style: context.textTheme.titleMedium,
textAlign: TextAlign.center,
),
CustomText(
key: const Key('home_title'), // Used for Integration testing
text: 'Home',
style: context.textTheme.titleMedium,
textAlign: TextAlign.center,
),
const SizedBox(height: 16),
CustomFadeSlideAnimation(
delay: const Duration(milliseconds: 600),
child: CustomButtonPrimary(
onPressed: () => context.pushRoute(const DebugToolsRoute()),
text: context.locale.featureHomepageOpenDebugTools,
),
CustomButtonPrimary(
onPressed: () => context.pushRoute(const DebugToolsRoute()),
text: context.locale.featureHomepageOpenDebugTools,
),
],
),
Expand Down