{"id":22316810,"url":"https://github.com/emvakar/ekbluralert","last_synced_at":"2025-06-30T08:33:43.554Z","repository":{"id":56909456,"uuid":"108872358","full_name":"emvakar/EKBlurAlert","owner":"emvakar","description":"Create an EK Blur Alert View for light actions in iOS Apps.","archived":false,"fork":false,"pushed_at":"2020-08-13T15:15:52.000Z","size":229,"stargazers_count":5,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-21T04:20:19.302Z","etag":null,"topics":["alert","blur","blurview","ios","macos","modalview","swift","swift4","view"],"latest_commit_sha":null,"homepage":"https://www.facebook.com/emkarimov","language":"Swift","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/emvakar.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}},"created_at":"2017-10-30T15:43:31.000Z","updated_at":"2023-07-01T10:06:25.000Z","dependencies_parsed_at":"2022-08-20T19:50:30.796Z","dependency_job_id":null,"html_url":"https://github.com/emvakar/EKBlurAlert","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emvakar%2FEKBlurAlert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emvakar%2FEKBlurAlert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emvakar%2FEKBlurAlert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emvakar%2FEKBlurAlert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emvakar","download_url":"https://codeload.github.com/emvakar/EKBlurAlert/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228012318,"owners_count":17855984,"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":["alert","blur","blurview","ios","macos","modalview","swift","swift4","view"],"created_at":"2024-12-03T23:07:56.851Z","updated_at":"2024-12-03T23:07:57.487Z","avatar_url":"https://github.com/emvakar.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EK Blur Alert\n\n[![Swift Version](https://img.shields.io/badge/Swift-5.2-green.svg)](https://swift.org) ![Cocoapods](https://img.shields.io/cocoapods/v/EKBlurAlert.svg) [![Build Status](https://travis-ci.com/emvakar/EKBlurAlert.svg?branch=master)](https://travis-ci.com/emvakar/EKBlurAlert) [![GitHub license](https://img.shields.io/github/license/emvakar/EKBlurAlert.svg)](https://github.com/emvakar/EKBlurAlert/blob/master/LICENSE) [![GitHub release](https://img.shields.io/github/release/emvakar/EKBlurAlert.svg)](https://GitHub.com/emvakar/EKBlurAlert/releases/)\n\nCreate an EK Blur Alert View for light actions in iOS Apps like iOS Music application.\n\nEK Blur Alert View is a framework created to recreate Apple's private Modal Status View.\nWhile designing iOS apps we may want to alert the user to a successful completion of a task.\nWhen we create applications we need help for users about the completion of certain operations.\nThis framework will help you to make the same hints as in applications from Apple's music app or podcast app.\n\nApple's solution is to display a self-removing and small modal view to the screen.\n\n![text](https://raw.githubusercontent.com/emvakar/EKBlurAlert/master/Previews/music_app_template.png \"Apple's custom use of Modal Status Views\")\n\nWith uses in the News app, the Apple Music app, and the Podcasts app, developers have been wanting access to this view for a while now.\nThat is what this framework solves.\n\n## Install\n\n### Swift Package Manager\n```swift\n\n    .package(url: \"https://github.com/emvakar/EKBlurAlert.git\", from: \"2.0.0\")\n```\n\n### Cocoapods\n```ruby\nsource 'https://github.com/emvakar/EKBlurAlert.git'\n\npod 'EKBlurAlert'\n```\n### Manualy\n\nSimply import the framework and add the following code to get started.\n\n\n### How to use\n\nEmpty setup with test parameters simple:\n\n```swift\nimport EKBlurAlert\n\nlet alertView = EKBlurAlertView(frame: view.bounds)\nview.addSubview(alertView)\n```\n\nOr fully customize the EKBlurAlertView with the following parameters:\n\n```swift\nimport EKBlurAlert\n\nfunc presentBluredAlertView() {\n    let alertView = EKBlurAlertView(frame: view.bounds,\n                                    titleFont: UIFont.systemFont(ofSize: 17),\n                                    subTitleFont: UIFont.systemFont(ofSize: 17),\n                                    image: UIImage(),\n                                    title: \"my Title\",\n                                    subTitle: \"My subtitle\",\n                                    autoFade: true,\n                                    after: 0.6,\n                                    radius: 15,\n                                    blurEffect: .dark)\n    view.addSubview(alertView)\n}\n```\n\n\n## Features\n\n### Animations\n\nThe EKBlurAlertView will appear and disappear with a fast fading and scaling effect to match Apple's implementation.\n\n### Timer\n\nThe EKBlurAlertView will only appear for a couple seconds so as not to interfere with the UX of your app.\n\n### Style\n\nThe EKBlurAlertView is designed to match the style and aesthetics of Apple's implementation.\n\nThis includes slightly rounded corners,\na blurred visual effects view as the background,\nheading and subheading options in addition to an image,\nand placement in the center of the view.\nThe animations were designed to match Apple's original design.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femvakar%2Fekbluralert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femvakar%2Fekbluralert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femvakar%2Fekbluralert/lists"}