{"id":13498255,"url":"https://github.com/Dan629pl/nordan-simply-page-android","last_synced_at":"2025-03-29T01:30:25.039Z","repository":{"id":130954158,"uuid":"269985169","full_name":"Dan629pl/nordan-simply-page-android","owner":"Dan629pl","description":"Library for quick and convenient creation of activities such as \"About Us\" or \"Settings\". With its help you can easily add references to your other activities and sociali using ready-made patterns, but you can easily create your own positions using transparent Api. Library written using material components.","archived":false,"fork":false,"pushed_at":"2020-12-03T07:57:21.000Z","size":17716,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-08-01T21:47:17.676Z","etag":null,"topics":["android","android-library","android-ui","library","material","material-design"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dan629pl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2020-06-06T13:11:29.000Z","updated_at":"2023-12-13T21:05:32.000Z","dependencies_parsed_at":"2023-10-04T02:49:01.571Z","dependency_job_id":null,"html_url":"https://github.com/Dan629pl/nordan-simply-page-android","commit_stats":null,"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dan629pl%2Fnordan-simply-page-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dan629pl%2Fnordan-simply-page-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dan629pl%2Fnordan-simply-page-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dan629pl%2Fnordan-simply-page-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dan629pl","download_url":"https://codeload.github.com/Dan629pl/nordan-simply-page-android/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222435744,"owners_count":16984183,"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-library","android-ui","library","material","material-design"],"created_at":"2024-07-31T21:00:20.889Z","updated_at":"2024-10-31T15:31:50.288Z","avatar_url":"https://github.com/Dan629pl.png","language":"Java","funding_links":["https://www.buymeacoffee.com/Dan629"],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# Nordan Simply Page\n[![platform](https://img.shields.io/badge/platform-Android-yellow.svg)](https://www.android.com)\n[![API](https://img.shields.io/badge/API-24%2B-brightgreen.svg?style=plastic)](https://android-arsenal.com/api?level=24)\n[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg?style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0.html)\n\n\n## Dependency\n\nAdd this to your module's `build.gradle` file:\n\n```gradle\ndependencies {\n\t...\n    implementation 'com.github.Dan629pl:nordan-simply-page-android:1.2.5'\n}\n```\n\u003ch1\u003eNordan Simply Pages\u003c/h1\u003e\n\n\u003ch3\u003eAbout Us Page Style\u003c/h3\u003e\n\n```java\n        ...\n    ConstraintLayout simplyPage = new NordanSimplyPage(this)\n                  .addImageItem(R.drawable.nordan_logo)\n                  .addDescriptionItem(R.string.lorem_ipsum)\n                  .addSeparator()\n                  .addGroup(\"Contact\", R.color.gray_font_color)\n                  .addPhone(\"123456789\", \"Call to me\")\n                  .addEmail(\"email address\", \"Write me an email\")\n                  .addSms(\"123456789\", \"Send message to me\", \"Sms message\")\n                  .addGroup(\"Check my socials\", R.color.gray_font_color)\n                  .addFacebook(\"facebookId\")\n                  .addInstagram(\"instagramId\")\n                  .addGithub(\"githubId\")\n                  .addGooglePlayStore(\"com.google.android.googlequicksearchbox\")\n                  .addYoutube(\"channelId\")\n                  .addWebsite(\"https://www.google.com\", \"Website\")\n                  .addSkype(\"profileId\")\n                  .addLinkedIn(\"daniel-owczarczyk-8b89a6150\")\n                  .addTwitter(\"profileId\")\n                  .addGroup(R.mipmap.ic_launcher_round, \"Other groups (with left side image)\")\n                  .addMinimalItem(BaseElement.builder().title(\"Minimal item (only text view)\").build())\n                  .addEmptyItem()\n                  .addMinimalItem(\n                          BaseElement.builder()\n                                  .title(\"Version \" + BuildConfig.VERSION_NAME)\n                                  .gravity(Gravity.CENTER)\n                                  .build())\n                  .addCopyRightsItem()\n                  .create();\n          setContentView(simplyPage);\n            ...\n```\n## Screenshots\n\n\n\u003ch3\u003eSettings Page Style\u003c/h3\u003e\n\n```java\n             \t    ...\n      View settingPage = new NordanSimplyPage(this)\n                .addImageItem(R.drawable.nordan_logo, 300, 75)\n                .addGroup(getString(R.string.account_group), R.drawable.account_icon, R.color.gray_font_color)\n                .addAccountItem(createAccountElement())\n                .addItem(createAccountConfirmedElement())\n                .addMinimalItem(createSignOutElement())\n                .addEmptyItem(30)\n                .addGroup(R.drawable.settings_app_icon, \"Application\")\n                .addSwitchItem(createThemeSwitcherElement())\n                .addItem(createTimeRefreshElement())\n                .addSingleRadioChoiceItem(createSingleChoiceElement())\n                .addCheckBoxItem(createCheckBoxElement())\n                .addCheckBoxItem(createCheckBoxExtendableElement())\n                .addSeekBarItem(createSeekBarElement())\n                .addEditTextItem(createEditTextElement())\n                .addEmptyItem(200)\n                .create();\n        setContentView(settingPage);\n                     ...\n```\n## Screenshots\n\n\n## Donation\nIf this library  help you reduce time to develop, you can buy me a coffee! :) \n\n\u003ca href=\"https://www.buymeacoffee.com/Dan629\"\u003e\u003cimg src=\"https://www.buymeacoffee.com/assets/img/bmc-meta-new/apple-icon-72x72.png\" alt=\"Buy Me A Coffee\" style=\"height: auto !important;width: auto !important;\" \u003e\u003c/a\u003e\n\n## License\n\n* [Apache Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n```\nCopyright 2020 Daniel Owczarczyk\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDan629pl%2Fnordan-simply-page-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDan629pl%2Fnordan-simply-page-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDan629pl%2Fnordan-simply-page-android/lists"}