MarcelGarus / marquee

A Flutter widget that scrolls text infinitely. Provides many customizations including custom scroll directions and velocities, pausing after every round and specifying custom durations and curves for accelerating and decelerating.
MIT License
284 stars 135 forks source link

When I change the text, it doesn't pause at the end of the text #21

Open ChunPangWong opened 4 years ago

ChunPangWong commented 4 years ago
                              Consumer<AddressViewModel>(
                                builder: (context , viewModel , child){
                                  return Marquee(
                                    text: viewModel.address,
                                    blankSpace: 60.0,
                                    pauseAfterRound: Duration(seconds: 1),
                                  );
                                }
                              ),
ChunPangWong commented 4 years ago

when the text is too long , it will be happen

MarcelGarus commented 4 years ago

That doesn't look right 😕 Sadly, I currently don't have the resources to actively look into that issue and maintain this repository.

I know it's a lot to ask but if you really need this to get fixed, maybe you could look into the issue yourself and come up with a solution? I'd be happy to accept PRs.