{"id":21850891,"url":"https://github.com/nikialeksey/fullscreendialog","last_synced_at":"2025-07-21T12:38:40.037Z","repository":{"id":56513619,"uuid":"94896505","full_name":"nikialeksey/FullScreenDialog","owner":"nikialeksey","description":"Android Material full screen dialog","archived":false,"fork":false,"pushed_at":"2020-11-03T09:25:21.000Z","size":750,"stargazers_count":11,"open_issues_count":3,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-14T15:14:05.521Z","etag":null,"topics":["android","dialog","fullscreen","material-design","screen-dialog"],"latest_commit_sha":null,"homepage":"","language":"Java","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/nikialeksey.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-06-20T13:51:13.000Z","updated_at":"2023-11-15T06:07:52.000Z","dependencies_parsed_at":"2022-08-15T20:10:28.676Z","dependency_job_id":null,"html_url":"https://github.com/nikialeksey/FullScreenDialog","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikialeksey%2FFullScreenDialog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikialeksey%2FFullScreenDialog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikialeksey%2FFullScreenDialog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nikialeksey%2FFullScreenDialog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nikialeksey","download_url":"https://codeload.github.com/nikialeksey/FullScreenDialog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248904637,"owners_count":21180835,"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","dialog","fullscreen","material-design","screen-dialog"],"created_at":"2024-11-28T00:25:09.961Z","updated_at":"2025-04-14T15:14:10.406Z","avatar_url":"https://github.com/nikialeksey.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![BCH compliance](https://bettercodehub.com/edge/badge/nikialeksey/FullScreenDialog?branch=master)](https://bettercodehub.com/)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/94dcc0c5d12d4c2d9aba648f0d705f60)](https://www.codacy.com/app/nikialeksey/FullScreenDialog?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=nikialeksey/FullScreenDialog\u0026amp;utm_campaign=Badge_Grade)\n[![codebeat badge](https://codebeat.co/badges/c0fcacc7-3aac-4c7b-8283-aa8f9e284e81)](https://codebeat.co/projects/github-com-nikialeksey-fullscreendialog-master)\n[![codecov](https://codecov.io/gh/nikialeksey/FullScreenDialog/branch/master/graph/badge.svg)](https://codecov.io/gh/nikialeksey/FullScreenDialog)\n[![Build Status](https://travis-ci.org/nikialeksey/FullScreenDialog.svg?branch=master)](https://travis-ci.org/nikialeksey/FullScreenDialog)\n[![Dependency Status](https://www.versioneye.com/user/projects/5979d857368b080066d28d11/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/5979d857368b080066d28d11)\n[![0pdd](http://www.0pdd.com/svg?name=nikialeksey/FullScreenDialog)](http://www.0pdd.com/p?name=nikialeksey/FullScreenDialog)\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/nikialeksey/FullScreenDialog/blob/master/LICENSE)\n[![API](https://img.shields.io/badge/API-16%2B-blue.svg?style=flat)](https://android-arsenal.com/api?level=16)\n[![Download](https://api.bintray.com/packages/pidra/maven/full-screen-dialog/images/download.svg)](https://bintray.com/pidra/maven/full-screen-dialog/_latestVersion)\n\n# FullScreenDialog\nImplementation of [full-screen-dialogs](https://material.io/guidelines/components/dialogs.html#dialogs-full-screen-dialogs) \nfrom material guidelines.\n\n![Video description](https://github.com/nikialeksey/FullScreenDialog/blob/master/gifs/main.gif)\n\n### Add to project\n```gradle\nrepositories {\n    jcenter()\n}\n\ndependencies {\n    ...\n    compile('com.nikialeksey:fullscreendialog:\u003clatest version\u003e@aar') {\n        transitive true\n    }\n    ...\n}\n```\n\n### Usage\n```java\nnew DissmissOnActionDialog(\n    new DismissOnCloseDialog(\n        new FsDialog(\n            context, \n            R.style.AppTheme,\n            new FsDialogToolbar(context, \"Title\",\n                new FsCloseButton(\n                    new SimpleButton(\n                        new ClickListener() {\n                            @Override\n                            public void onClick() {\n                                Toast.makeText(context, \"Close\", Toast.LENGTH_LONG).show();\n                            }\n                        }), \n                        closeIcon),\n                new FsActionButton(\n                    new SimpleButton(\n                        new ClickListener() {\n                            @Override\n                            public void onClick() {\n                                Toast.makeText(context, \"Action\", Toast.LENGTH_LONG).show();\n                            }\n                        }), \n                        \"Action\")), \n            content))).show();\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikialeksey%2Ffullscreendialog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnikialeksey%2Ffullscreendialog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnikialeksey%2Ffullscreendialog/lists"}