MarcelGarus / MarcelGarus/marquee
'fadingEdgeEndFraction' is not visible during round pause
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
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- 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