{"id":20280163,"url":"https://github.com/herbou/unity_toastui","last_synced_at":"2026-03-05T08:32:19.832Z","repository":{"id":53264709,"uuid":"357732881","full_name":"herbou/Unity_ToastUI","owner":"herbou","description":"Unity cross-platform Toast UI package","archived":false,"fork":false,"pushed_at":"2024-05-21T17:15:49.000Z","size":138,"stargazers_count":100,"open_issues_count":2,"forks_count":22,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-04T01:38:15.188Z","etag":null,"topics":["toast","ui","unity","unityui"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/herbou.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"custom":["https://paypal.me/hamzaherbou"]}},"created_at":"2021-04-14T01:09:05.000Z","updated_at":"2025-06-11T11:15:35.000Z","dependencies_parsed_at":"2024-08-02T05:21:07.077Z","dependency_job_id":null,"html_url":"https://github.com/herbou/Unity_ToastUI","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/herbou/Unity_ToastUI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/herbou%2FUnity_ToastUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/herbou%2FUnity_ToastUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/herbou%2FUnity_ToastUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/herbou%2FUnity_ToastUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/herbou","download_url":"https://codeload.github.com/herbou/Unity_ToastUI/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/herbou%2FUnity_ToastUI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30115936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T08:19:04.902Z","status":"ssl_error","status_checked_at":"2026-03-05T08:17:37.148Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["toast","ui","unity","unityui"],"created_at":"2024-11-14T13:34:35.833Z","updated_at":"2026-03-05T08:32:19.782Z","avatar_url":"https://github.com/herbou.png","language":"C#","funding_links":["https://paypal.me/hamzaherbou"],"categories":[],"sub_categories":[],"readme":"# Toast UI for your Game messages\nA powerful,Customizable, and esay-to-use Toast UI for Unity\n\n\u003cimg src=\"https://www.mediafire.com/convkey/6af4/br7apcoostvua8mzg.jpg\" alt=\"Toast ui\" height=\"80\" /\u003e\n\n### Video tutorial : https://youtu.be/405lXPINdx0\n\u003cbr\u003e\u003cbr\u003e\n## ■ Supporting Platforms :\n- All platforms (Standalone Builds, Android, iOS, WebGl, and more..)\n\u003cbr\u003e\u003cbr\u003e\n## ■ How to use?  :\n### 1- Import ```EasyUI_Toast.unitypackage``` package to your project.\n⚠️ NOTE! : No need to add any prefab to the scene\n### 3- Add **EasyUI.Toast** namespace in your script :\n```c#\nusing EasyUI.Toast ;\n```\n\u003cbr\u003e\n\n### 4- Now Simply write ```Toast.Show()```:\n```c#\n// Simple :\nToast.Show (\"Hello Devs\") ;\n\n// With duration :\nToast.Show (\"Hello Devs\", 3f) ;\n```\n\u003cbr\u003e\n\n## ■ Change colors :\n```c#\n// Built-in Colors  ( Black, Red, Purple, Magenta, Blue, Green, Yellow, Orange ) :\nToast.Show (\"Hello Devs\", 3f, ToastColor.Green) ;\n\n// Custom Colors :\nToast.Show (\"Hello Devs\", 4f, new Color (1f, .4f, 0f)) ;\n// or Toast.Show (\"Hello Devs\", 4f, Color.blue);\n```\n\u003cbr\u003e\n\n## ■ Change position :\n```c#\n// Positions ( TopLeft, TopCenter, TopRight, MiddleLeft, MiddleCenter, MiddleRight, BottomLeft, BottomCenter, BottomRight ) :\nToast.Show (\"Top-Center Toast\", 3f, ToastPosition.TopCenter) ;\n```\n\u003cbr\u003e\n\n## ■ Change text styling :\n```c#\nToast.Show (\"Hello, \u003ccolor=yellow\u003eThis is a yellow text\u003c/color\u003e\", 3f);\n```\n\u003cimg src=\"https://www.mediafire.com/convkey/336a/c3pmudunpkuhbvb7g.jpg\" alt=\"Toast ui\" height=\"80\" /\u003e\nfor more supported style tags : \u003ca href=\"https://docs.unity3d.com/Packages/com.unity.ugui@1.0/manual/StyledText.html\"\u003eText supported styles\u003c/a\u003e\n\n\u003cbr\u003e\u003cbr\u003e\n\n## ■ Dismiss (hide) toast :\n```c#\nToast.Dismiss();\n```\n\u003cbr\u003e\n\n## ■ Other Show(..) versions :\n```c#\nToast.Show (string text);\n\nToast.Show (string text, float duration);\n\nToast.Show (string text, float duration, ToastPosition position);\n\nToast.Show (string text, ToastColor color);\n\nToast.Show (string text, ToastColor color, ToastPosition position);\n\nToast.Show (string text, Color color);\n\nToast.Show (string text, Color color, ToastPosition position);\n\nToast.Show (string text, float duration, ToastColor color);\n\nToast.Show (string text, float duration, ToastColor color, ToastPosition position);\n\nToast.Show (string text, float duration, Color color);\n\nToast.Show (string text, float duration, Color color, ToastPosition position);\n```\n\n\n\n\u003cbr\u003e\u003cbr\u003e\n\u003cbr\u003e\u003cbr\u003e\n## ❤️ Donate\n\n\u003ca href=\"https://paypal.me/hamzaherbou\" title=\"https://paypal.me/hamzaherbou\" target=\"_blank\"\u003e\u003cimg align=\"left\" height=\"50\" src=\"https://www.mediafire.com/convkey/72dc/iz78ys7vtfsl957zg.jpg\" alt=\"Paypal\"\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fherbou%2Funity_toastui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fherbou%2Funity_toastui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fherbou%2Funity_toastui/lists"}