mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
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:
parent
eede8fa6c7
commit
2f2b45f844
2 changed files with 2 additions and 1 deletions
|
@ -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),
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue