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>
This commit is contained in:
David Adegoke 2025-05-26 23:14:42 +01:00 committed by GitHub
parent eede8fa6c7
commit 2f2b45f844
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -173,7 +173,7 @@ class CreatePinWelcomePage extends BasePage {
color: Theme.of(context).colorScheme.primary, color: Theme.of(context).colorScheme.primary,
), ),
cursorColor: Theme.of(context).colorScheme.primary, cursorColor: Theme.of(context).colorScheme.primary,
cursorHeight: 24, cursorHeight: 28,
cursorWidth: 4, cursorWidth: 4,
), ),
SizedBox(width: 4), SizedBox(width: 4),

View file

@ -140,6 +140,7 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
// Fixed cursor position // Fixed cursor position
Positioned( Positioned(
right: 0, right: 0,
bottom: 0,
child: AnimatedBuilder( child: AnimatedBuilder(
animation: _cursorAnimation, animation: _cursorAnimation,
builder: (context, child) { builder: (context, child) {