Adjust Animation Cursor baseline (#2294)
* Fix some colors * fix(theme-updates): Modify condition for theme border style display when hasUnderlineBorder is true * fix(themes-updates): Adjust switch colors and modify payjoin hint text * fix: Crash report relating to success image display on successful exchange * fix(theme-updates): Adjust animated text max width to prevent overflows * fix(theme-updates): Adjust fee picker styling * fix(themes-updates): Remove text overflow on welcome screen animation * fix(themes-update): Fix the cursor to the baseline for the text --------- Co-authored-by: tuxsudo <tuxsudo@tux.pizza>
David Adegoke committed
May 26, 2025 at 23:14 UTC
2f2b45f84433a33d5e60de9b3d52216f3888970a
2 files changed
+2
-1
lib/src/screens/welcome/create_pin_welcome_page.dart
+1
-1
@@ -173,7 +173,7 @@ class CreatePinWelcomePage extends BasePage {
173
color: Theme.of(context).colorScheme.primary,
174
),
175
cursorColor: Theme.of(context).colorScheme.primary,
176
- cursorHeight: 24,
176
+ cursorHeight: 28,
177
cursorWidth: 4,
178
),
179
SizedBox(width: 4),
lib/src/widgets/animated_typing_text.dart
+1
@@ -140,6 +140,7 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
140
// Fixed cursor position
141
Positioned(
142
right: 0,
143
+ bottom: 0,
144
child: AnimatedBuilder(
145
animation: _cursorAnimation,
146
builder: (context, child) {