{"id":13661564,"url":"https://github.com/herbou/Unity_ToastUI","last_synced_at":"2025-04-25T03:30:22.489Z","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":95,"open_issues_count":2,"forks_count":22,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-11T06:44:06.896Z","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-04-11T06:30:55.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,"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","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250747611,"owners_count":21480677,"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":["toast","ui","unity","unityui"],"created_at":"2024-08-02T05:01:37.142Z","updated_at":"2025-04-25T03:30:22.250Z","avatar_url":"https://github.com/herbou.png","language":"C#","funding_links":["https://paypal.me/hamzaherbou"],"categories":["C\\#"],"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"}