{"id":29644272,"url":"https://github.com/fluttergenerator/animatedgradienttextview","last_synced_at":"2025-07-22T00:34:04.073Z","repository":{"id":305554337,"uuid":"1023197025","full_name":"FlutterGenerator/AnimatedGradientTextView","owner":"FlutterGenerator","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-20T19:28:54.000Z","size":224,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-20T20:01:17.569Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FlutterGenerator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-20T18:18:10.000Z","updated_at":"2025-07-20T19:26:22.000Z","dependencies_parsed_at":"2025-07-20T20:01:22.768Z","dependency_job_id":"e9966f58-6486-4a30-94f9-b04b817fdda5","html_url":"https://github.com/FlutterGenerator/AnimatedGradientTextView","commit_stats":null,"previous_names":["fluttergenerator/animatedgradienttextview"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/FlutterGenerator/AnimatedGradientTextView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlutterGenerator%2FAnimatedGradientTextView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlutterGenerator%2FAnimatedGradientTextView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlutterGenerator%2FAnimatedGradientTextView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlutterGenerator%2FAnimatedGradientTextView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FlutterGenerator","download_url":"https://codeload.github.com/FlutterGenerator/AnimatedGradientTextView/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FlutterGenerator%2FAnimatedGradientTextView/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266404958,"owners_count":23923498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-22T00:34:03.564Z","updated_at":"2025-07-22T00:34:04.055Z","avatar_url":"https://github.com/FlutterGenerator.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![alt tag](https://cloud.githubusercontent.com/assets/12541829/19215982/51424130-8dad-11e6-8a5f-e92652e4ce2b.gif)\n\n[![](https://jitpack.io/v/FlutterGenerator/AnimatedGradientTextView.svg)](https://jitpack.io/#FlutterGenerator/AnimatedGradientTextView)\n\nAnimatedGradientTextView : Color gradients for TextView\n=======================================================\n\nThis library will allow you to create TextView which uses color gradients and custom fonts.\n\nChangelog\n---------\n\n* **v0.0.7**\n  * Fix crash\n\n* **v0.0.6**\n  * Fix crash v0.0.6, released August 29, 2017\n\n* **v0.0.5**\n  * app:font become app:customFont\n  * Add app:maxFPS (define how many times the gradient should refresh each second)\n\nLatest release\n---------------\n\nThe most recent release is v0.0.7, released July 20, 2025\n\nTo add a dependency using Gradle, add in your **top-level build.gradle**:\n```\nallprojects {\n\trepositories {\n\t\t...\n\t\tmaven { url = \"https://jitpack.io\" }\n\t}\n}\n```\n\nAnd then add in your **app build.gradle** :\n```\ndependencies {\n    implementation 'com.github.FlutterGenerator:AnimatedGradientTextView:v0.0.7'\n}\n```\n\nGetting started\n---------------\n \nFirstly, don't forget to add this in your **container layout** :\n```xml\nxmlns:app=\"http://schemas.android.com/apk/res-auto\"\n```\n\nHere is an exemple using an **AnimatedGradientTextView**. I just put in my **xml layout** :\n```xml\n\u003ccom.mursaat.extendedtextview.AnimatedGradientTextView\n\t...\n\tapp:colors=\"@array/funny_colors\"\n\tapp:simultaneousColors=\"4\"\n\tapp:angle=\"45\"\n\tapp:speed=\"1000\"\n\tapp:maxFPS=\"30\"\n\tapp:customFont=\"BebasNeue.otf\" \n\t/\u003e\n```\n\n\nAll these parameters are optionals. Some explanations :\n* **colors** : It must reference an array of colors in **res/values/attr.xml**, for example :\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cresources\u003e\n\t...\n    \u003carray name=\"funny_colors\"\u003e\n        \u003citem\u003e@color/materialRed\u003c/item\u003e\n        \u003citem\u003e@color/materialLime\u003c/item\u003e\n        \u003citem\u003e@color/materialOrange\u003c/item\u003e\n        \u003citem\u003e@color/materialPurple\u003c/item\u003e\n    \u003c/array\u003e\n\u003c/resources\u003e\n```\n\n* **simultaneousColors** : The number of colors (of the array) possibly displayed in a same time\n* **angle** : The angle of the color gradient\n* **speed** : A number in milliseconds. Increase this number will decrease the gradient move speed\n* **customFont** : Must be a name of a font located in **assets/fonts** folder\n* **maxFPS** : Define how many times the gradient should refresh each second. (Default : 24 FPS)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluttergenerator%2Fanimatedgradienttextview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluttergenerator%2Fanimatedgradienttextview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluttergenerator%2Fanimatedgradienttextview/lists"}