Fix arrow btn on home view

This commit is contained in:
Shawn 2022-09-12 11:04:53 -06:00
parent b1f0bed1cc
commit 7ff835c4a0

View File

@ -159,8 +159,6 @@ class _HomeScreenState extends State<HomeScreen> with SingleTickerProviderStateM
duration: $styles.times.fast, duration: $styles.times.fast,
child: RepaintBoundary( child: RepaintBoundary(
key: ObjectKey(currentWonder), key: ObjectKey(currentWonder),
child: IgnorePointer(
ignoringSemantics: false,
child: OverflowBox( child: OverflowBox(
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
@ -170,6 +168,8 @@ class _HomeScreenState extends State<HomeScreen> with SingleTickerProviderStateM
/// Title Content /// Title Content
LightText( LightText(
child: IgnorePointer(
ignoringSemantics: false,
child: MergeSemantics( child: MergeSemantics(
child: Transform.translate( child: Transform.translate(
offset: Offset(0, 30), offset: Offset(0, 30),
@ -196,6 +196,7 @@ class _HomeScreenState extends State<HomeScreen> with SingleTickerProviderStateM
), ),
), ),
), ),
),
/// Animated arrow and background /// Animated arrow and background
/// Wrap in a container that is full-width to make it easier to find for screen readers /// Wrap in a container that is full-width to make it easier to find for screen readers
@ -225,7 +226,6 @@ class _HomeScreenState extends State<HomeScreen> with SingleTickerProviderStateM
), ),
), ),
), ),
),
/// Menu Btn /// Menu Btn
TopLeft( TopLeft(