{"id":13537237,"url":"https://github.com/zeeshanali-k/typist-cmp","last_synced_at":"2026-02-19T23:43:26.542Z","repository":{"id":191117389,"uuid":"683649682","full_name":"zeeshanali-k/Typist-CMP","owner":"zeeshanali-k","description":"A Compose Multiplatform Typing Animation Library for Android, iOS, Desktop and Web","archived":false,"fork":false,"pushed_at":"2024-07-30T06:01:35.000Z","size":3442,"stargazers_count":36,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-29T11:30:57.030Z","etag":null,"topics":["android","android-app","android-lib","android-library","android-sdk","android-studio","compose-multiplatform","ios","jetpack-compose","kotlin","kotlin-multiplatform","library"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/zeeshanali-k.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":"https://www.buymeacoffee.com/devscion"}},"created_at":"2023-08-27T09:01:14.000Z","updated_at":"2024-12-15T21:55:32.000Z","dependencies_parsed_at":"2023-12-25T16:35:16.763Z","dependency_job_id":"ead40112-2756-4190-96a7-0d1aa3324d53","html_url":"https://github.com/zeeshanali-k/Typist-CMP","commit_stats":null,"previous_names":["zeeshanali-k/typist-cmp"],"tags_count":2,"template":false,"template_full_name":"JetBrains/compose-multiplatform-ios-android-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeeshanali-k%2FTypist-CMP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeeshanali-k%2FTypist-CMP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeeshanali-k%2FTypist-CMP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeeshanali-k%2FTypist-CMP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeeshanali-k","download_url":"https://codeload.github.com/zeeshanali-k/Typist-CMP/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246756765,"owners_count":20828762,"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","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":["android","android-app","android-lib","android-library","android-sdk","android-studio","compose-multiplatform","ios","jetpack-compose","kotlin","kotlin-multiplatform","library"],"created_at":"2024-08-01T09:00:56.671Z","updated_at":"2025-04-02T04:30:26.994Z","avatar_url":"https://github.com/zeeshanali-k.png","language":"Kotlin","funding_links":["https://www.buymeacoffee.com/devscion","https://img.buymeacoffee.com/button-api/?text=Buy"],"categories":["Libraries"],"sub_categories":["GUI"],"readme":"[![Maven Central](https://img.shields.io/maven-central/v/tech.dev-scion/typist-cmp.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.dev-scion%22%20AND%20a:%22typist-cmp%22)\n\n# Typist-CMP\nA Compose Multiplatform Text Typing Animation Library for Android, iOS, Desktop and Web.\nVisit \u003ca href=\"https://github.com/zeeshanali-k/Typist\"\u003ethis link\u003c/a\u003e to checkout Typist for Jetpack Compose.\n\n\u003cimg src=\"/images/ios.gif\" height=\"200px\"\u003e\n\u003cimg src=\"/images/android.gif\" height=\"200px\"\u003e\n\n\u003ch3\u003e\u003cb\u003ePass multiple strings and infinite repititions option\u003c/b\u003e\u003c/h3\u003e\n\n\u003cimg src=\"/images/ezgif-5-b8884a1d1c.gif\" height=\"300px\"\u003e\n\n## Usage\n\u003cp\u003eAdd this to your project level \"build.gradle\" or in newer versions of gradle in \"settings.gradle\" under repositories section:\u003c/p\u003e\n\n ```groovy\nrepositories {\n   mavenCentral()\n}\n```\n\u003cp\u003eAdd this to your shared module build.gradle file in commonMain under dependencies section:\u003c/p\u003e\n\n```kotlin\napi(\"tech.dev-scion:typist-cmp:TAG\")\n```\n\u003cp\u003eReplace TAG with library version\u003c/p\u003e\n\n\u003cp\u003eAdd Typist Composable to your app and configure accordingly:\u003c/p\u003e\n\n```kotlin\nTypist(\n    text = \"Hi! I am Typist.\",\n    modifier = Modifier\n                .align(Alignment.Center),\n    typistSpeed = TypistSpeed.NORMAL,\n    textStyle = TextStyle(\n        color = Color.Red,\n        fontWeight = FontWeight.Bold,\n        fontSize = 28.sp,\n        textAlign = TextAlign.Center,\n        isBlinkingCursor = true, // if true the cursor will keep blinking\n        isInfiniteCursor = false, // if true the cursor will not hide even after the text has been written\n        isCursorVisible = true, // if true the cursor will not be visible at all\n    ),\nonAnimationEnd = {},\nonAnimationStart = {}\n)\n```\n\n\n\u003ca href=\"https://www.buymeacoffee.com/devscion\"\u003e\u003cimg src=\"https://img.buymeacoffee.com/button-api/?text=Buy me a coffee\u0026emoji=\u0026slug=ZeeshanAli\u0026button_colour=FFDD00\u0026font_colour=000000\u0026font_family=Cookie\u0026outline_colour=000000\u0026coffee_colour=ffffff\"\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeeshanali-k%2Ftypist-cmp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeeshanali-k%2Ftypist-cmp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeeshanali-k%2Ftypist-cmp/lists"}