MarcelGarus / MarcelGarus/marquee

'fadingEdgeEndFraction' is not visible during round pause

Open
#99 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Dart
Stars
363
Forks
147
PR merge metrics
No merged PRs in 30d

Description

Firstly, thank you for this cool package. It saves me a lot of time now! One thing I noticed is that `fadingEdgeEndFraction` is visible at the beginning but when I set `pauseAfterRound` it is not visible for that time.

Code to reproduce:

```
@override
Widget build(BuildContext context) {
return SizedBox(
height: 25,
child: AutoSizeText(
"... long text ...",
minFontSize: 19,
maxFontSize: 19,
style: const TextStyle(
fontSize: 19,
decoration: TextDecoration.none,
),
overflowReplacement: Marquee(
text: "... long text ...",
velocity: 50,
startAfter: const Duration(seconds: 3),
blankSpace: 48.0,
startPadding: 24.0,
pauseAfterRound: const Duration(seconds: 3),
fadingEdgeStartFraction: 0.15,
fadingEdgeEndFraction: 0.15,
style: const TextStyle(
fontSize: 19,
decoration: TextDecoration.none,
),
),
),
);
}
```

My expectation is that it is also visible while it is paused by `pauseAfterRound`.

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Reproduce the issue with the provided Flutter widget configuration, focusing on `pauseAfterRound` together with `fadingEdgeEndFraction`. Trace the marquee widget's pause and fading-edge behavior to determine why the end fade disappears during the pause. Done means the configured end fade remains visible throughout each pause after a round.

Written by the indexing model from the issue text.

Assessment

Tech stack
dart, flutter
Domain
frontend
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
45/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.