-
-
Notifications
You must be signed in to change notification settings - Fork 303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: add AdamSGit as a contributor #49
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Merged
AadumKhor
pushed a commit
to AadumKhor/Animated-Text-Kit
that referenced
this pull request
May 15, 2020
* docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci]
aagarwal1012
added a commit
that referenced
this pull request
May 15, 2020
* Rotating text : add animation objects and controller * Rotating text : add text widgets * Rotating text : nested text widgets with animation builder * Rotating text : working * Typer : removed addlisteners for animations * Rotating text : removed animation listeners and code cleanup * Typewriter : partially working code * Typewriter : working * Typewriter : added default parameter for duration and made text @required for all * refractor names * Fade : working * Colorizer : gradient text made * Typewriter : dart analuysis error removed * Colorizer : working * Colorizer : updated ui * Colorizer : refrator name * Colorize : added tuning parameter * Colorize : made text string to list and added fade animation * Colorize : added default value of duration * fixed some ui * Typewriter : added default value of duration * Typewriter : added else value of duration * Colorize : added default value of duration * Fade : added default value of duration * Rotate : added default value of duration and added a new parameter transition height and added its default value * Typer : added default value of duration * Rotate : change slide curve to linear * fade : change fade curve to linear * Scale : working * Scale : added scaling parameter * Made basic example app ui * Added fonts * made theme for typer and typewriter * made theme for rest animated texts * showcase completed * added cover widget * fixed play button alignment * Typer : updated default value of duration * added labels for animations in ui * added smoke test {not working} * fixed testing errors * Updated LICENSE * added example app testing in travis.yaml * added preview gifs * fixed formatting issues * initial release 1.0.1 * Updated README.md * updated flutter version compatibility * fixed flutter compatibility issues * Added CODE_OF_CONDUCT.md * Update issue templates * Added contributing.md and updated readme * Added pull request template * Updated readme and contributions.md * Updated version to 1.0.2 * added table of contents to readme * Updated pull request section in contributing.md * Update travis.yaml and contributing.md * Remove travis build errors * 🎨 fix formating in test file * 🎉 update version to 1.0.3 * ⬆️ added onTap event for all text animations * ⬆️ updated example * 🐛 changed InkWell widget to GestureDetector for the onTap event * 🔥 fixed formatting issues * 🐛 fixed dart analysis issues * 🎉 updated to version 1.1.0 * 💚 added some animations for the roadmap * 🐛 fixed formatting issues * add .idea to .gitignore * Expand .gitignore, Add flag for running animation once, update gradle. * 🐛 fixed fading with isRepeatingAnimation is set false * 📝 added isRepeatingAnimation to Readme * 🎉 updated version to 1.2.0 * Added alignment property to Stack and textAlign property to Text * Added GenericAnimatedTextKit to simplify some initialization Added some common assertions * Revert "Added GenericAnimatedTextKit to simplify some initialization" This reverts commit 1dc30cc. * Updated README.md. Added the usage of "textAlign" and "alignment" properties * 🐛 fixed opacity value in typer * 🎉 updated to 1.3.0 * Updated Readme * docs: added documentation for the various parameters of all the animated text widgets * docs: updated example app readme * conf: updated travis script * conf: updated package to version 1.3.1 * conf: create funding.yml * docs: updated docs for duration parameter * docs: updated contributing.md * bfix: fixed travis * conf: added codecov coverage * docs: add salihgueler as a contributor (#36) * docs: update README.md * docs: create .all-contributorsrc * docs: updated readme * docs: add anderscheow as a contributor (#37) * docs: update README.md * docs: update .all-contributorsrc * docs: add r1walz as a contributor (#38) * docs: update README.md * docs: update .all-contributorsrc * Enhanced different classes of AnimatedTextKit * Fixed travis issue * Typer Class Enhancments (#40) * Typer Class Enhancments Refer to issue #34 The Typer Class has been greatly improved in term of control. ### Let's start with breaking changes : ####The duration parameter has become two new ones : speed and pause * speed is the elapsed time between the animation of each characters of a text (Default is 40 ms) * pause is the pause duration between texts (Default is 500 ms) ### New features : ####Three new callbacks come alongside the onTap : * onNext(int index, bool isLast) - This callback will be called before the next text animation, after the previous one's pause. * onNextBeforePause(int index, bool isLast) - This callback will be called before the next text animation, before the previous one's pause. * onFinished - This callback is called at the end, if the parameter isRepeatingAnimation is set to false ####Two new arguments : * displayFullTextOnTap - If true, tapping the screen will stop current animated text, and display it fully for min(remaining, pause) time. (Default is false) * stopPauseOnTap - If true, tapping during a pause will stop it and start the next text animation (Default is false) ####The text list parameter now accept either strings, or map where you can give a text custom speed and pause. If you like thoses changes, I'll make another commit with updated readme regarding this PR with code examples. * Fix indentation issues for Travis * Fix indentation issues for Travis * Fix formating issue in travis * chor: deleted flutter_export_environment.sh file (unnecessary) * Addeed TextLiquidFill animation to AnimatedTextKit * chor: fixed formatting issues * bfix: fixed Travis fail * conf: updated to version 2.0.0 * chor: updated readme * docs: add AdamSGit as a contributor (#49) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] * docs: add hemilpanchiwala as a contributor (#50) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] * docs: added text liquid fill medium blog link in Readme * feat: updated to v2.0.1 (#67) * #44 fix * added gitignore * gitignore Co-authored-by: aagarwal1012 <[email protected]> Co-authored-by: r1walz <[email protected]> Co-authored-by: Muhammed Salih Guler <[email protected]> Co-authored-by: Anders Cheow <[email protected]> Co-authored-by: Anders Cheow <[email protected]> Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> Co-authored-by: Hemil Panchiwala <[email protected]> Co-authored-by: AdamSGit <[email protected]>
aagarwal1012
added a commit
that referenced
this pull request
May 18, 2020
* Rotating text : add animation objects and controller * Rotating text : add text widgets * Rotating text : nested text widgets with animation builder * Rotating text : working * Typer : removed addlisteners for animations * Rotating text : removed animation listeners and code cleanup * Typewriter : partially working code * Typewriter : working * Typewriter : added default parameter for duration and made text @required for all * refractor names * Fade : working * Colorizer : gradient text made * Typewriter : dart analuysis error removed * Colorizer : working * Colorizer : updated ui * Colorizer : refrator name * Colorize : added tuning parameter * Colorize : made text string to list and added fade animation * Colorize : added default value of duration * fixed some ui * Typewriter : added default value of duration * Typewriter : added else value of duration * Colorize : added default value of duration * Fade : added default value of duration * Rotate : added default value of duration and added a new parameter transition height and added its default value * Typer : added default value of duration * Rotate : change slide curve to linear * fade : change fade curve to linear * Scale : working * Scale : added scaling parameter * Made basic example app ui * Added fonts * made theme for typer and typewriter * made theme for rest animated texts * showcase completed * added cover widget * fixed play button alignment * Typer : updated default value of duration * added labels for animations in ui * added smoke test {not working} * fixed testing errors * Updated LICENSE * added example app testing in travis.yaml * added preview gifs * fixed formatting issues * initial release 1.0.1 * Updated README.md * updated flutter version compatibility * fixed flutter compatibility issues * Added CODE_OF_CONDUCT.md * Update issue templates * Added contributing.md and updated readme * Added pull request template * Updated readme and contributions.md * Updated version to 1.0.2 * added table of contents to readme * Updated pull request section in contributing.md * Update travis.yaml and contributing.md * Remove travis build errors * 🎨 fix formating in test file * 🎉 update version to 1.0.3 * ⬆️ added onTap event for all text animations * ⬆️ updated example * 🐛 changed InkWell widget to GestureDetector for the onTap event * 🔥 fixed formatting issues * 🐛 fixed dart analysis issues * 🎉 updated to version 1.1.0 * 💚 added some animations for the roadmap * 🐛 fixed formatting issues * add .idea to .gitignore * Expand .gitignore, Add flag for running animation once, update gradle. * 🐛 fixed fading with isRepeatingAnimation is set false * 📝 added isRepeatingAnimation to Readme * 🎉 updated version to 1.2.0 * Added alignment property to Stack and textAlign property to Text * Added GenericAnimatedTextKit to simplify some initialization Added some common assertions * Revert "Added GenericAnimatedTextKit to simplify some initialization" This reverts commit 1dc30cc. * Updated README.md. Added the usage of "textAlign" and "alignment" properties * 🐛 fixed opacity value in typer * 🎉 updated to 1.3.0 * Updated Readme * docs: added documentation for the various parameters of all the animated text widgets * docs: updated example app readme * conf: updated travis script * conf: updated package to version 1.3.1 * conf: create funding.yml * docs: updated docs for duration parameter * docs: updated contributing.md * bfix: fixed travis * conf: added codecov coverage * docs: add salihgueler as a contributor (#36) * docs: update README.md * docs: create .all-contributorsrc * docs: updated readme * docs: add anderscheow as a contributor (#37) * docs: update README.md * docs: update .all-contributorsrc * docs: add r1walz as a contributor (#38) * docs: update README.md * docs: update .all-contributorsrc * Enhanced different classes of AnimatedTextKit * Fixed travis issue * Typer Class Enhancments (#40) * Typer Class Enhancments Refer to issue #34 The Typer Class has been greatly improved in term of control. ### Let's start with breaking changes : ####The duration parameter has become two new ones : speed and pause * speed is the elapsed time between the animation of each characters of a text (Default is 40 ms) * pause is the pause duration between texts (Default is 500 ms) ### New features : ####Three new callbacks come alongside the onTap : * onNext(int index, bool isLast) - This callback will be called before the next text animation, after the previous one's pause. * onNextBeforePause(int index, bool isLast) - This callback will be called before the next text animation, before the previous one's pause. * onFinished - This callback is called at the end, if the parameter isRepeatingAnimation is set to false ####Two new arguments : * displayFullTextOnTap - If true, tapping the screen will stop current animated text, and display it fully for min(remaining, pause) time. (Default is false) * stopPauseOnTap - If true, tapping during a pause will stop it and start the next text animation (Default is false) ####The text list parameter now accept either strings, or map where you can give a text custom speed and pause. If you like thoses changes, I'll make another commit with updated readme regarding this PR with code examples. * Fix indentation issues for Travis * Fix indentation issues for Travis * Fix formating issue in travis * chor: deleted flutter_export_environment.sh file (unnecessary) * Addeed TextLiquidFill animation to AnimatedTextKit * chor: fixed formatting issues * bfix: fixed Travis fail * conf: updated to version 2.0.0 * chor: updated readme * docs: add AdamSGit as a contributor (#49) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] * docs: add hemilpanchiwala as a contributor (#50) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] * docs: added text liquid fill medium blog link in Readme * feat: updated to v2.0.1 (#67) * #44 fix * added gitignore * gitignore * Issue 58 * Changed back to default example Co-authored-by: aagarwal1012 <[email protected]> Co-authored-by: r1walz <[email protected]> Co-authored-by: Muhammed Salih Guler <[email protected]> Co-authored-by: Anders Cheow <[email protected]> Co-authored-by: Anders Cheow <[email protected]> Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> Co-authored-by: Hemil Panchiwala <[email protected]> Co-authored-by: AdamSGit <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds @AdamSGit as a contributor for ideas, maintenance.
This was requested by aagarwal1012 in this comment