{"id":15090007,"url":"https://github.com/fivethree-team/ionic-4-components","last_synced_at":"2026-01-14T22:55:40.171Z","repository":{"id":50917139,"uuid":"144169125","full_name":"fivethree-team/ionic-4-components","owner":"fivethree-team","description":"🍕 Ionic 4 UI Component Library. Featuring Image Gallery, Refresher, Bottom Sheet and more.","archived":true,"fork":false,"pushed_at":"2021-05-27T20:39:33.000Z","size":38909,"stargazers_count":223,"open_issues_count":35,"forks_count":55,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-10-05T22:36:13.135Z","etag":null,"topics":["angular","components","ionic","material-design","ui"],"latest_commit_sha":null,"homepage":"https://fivethree-team.github.io/ionic-4-components","language":"TypeScript","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/fivethree-team.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-09T15:09:16.000Z","updated_at":"2025-09-02T08:00:48.000Z","dependencies_parsed_at":"2022-08-27T05:11:20.842Z","dependency_job_id":null,"html_url":"https://github.com/fivethree-team/ionic-4-components","commit_stats":null,"previous_names":["fivethree-team/fivethree"],"tags_count":53,"template":false,"template_full_name":null,"purl":"pkg:github/fivethree-team/ionic-4-components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivethree-team%2Fionic-4-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivethree-team%2Fionic-4-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivethree-team%2Fionic-4-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivethree-team%2Fionic-4-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fivethree-team","download_url":"https://codeload.github.com/fivethree-team/ionic-4-components/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fivethree-team%2Fionic-4-components/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28437340,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: 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":["angular","components","ionic","material-design","ui"],"created_at":"2024-09-25T09:03:57.303Z","updated_at":"2026-01-14T22:55:40.136Z","avatar_url":"https://github.com/fivethree-team.png","language":"TypeScript","readme":"\u003cimg alt=\"project banner\" href=\"https://fivethree-team.github.io/ionic-4-components\" src=\"banner.svg\"\u003e\n\n# Ionic 4 Components\n\nCostumizable UI Components for Ionic 4.\n\n[![npm version](https://badge.fury.io/js/%40fivethree%2Fcore.svg)](https://www.npmjs.com/@fivethree/core)\n\n[Documentation](https://fivethree-team.github.io/ionic-4-components) |\n[Component Demos](https://fivethree-team.github.io/ionic-4-components/components) |\n[Getting Started](https://fivethree-team.github.io/ionic-4-components/getting-started) |\n[Get In Touch](https://fivethree.io/)\n\n---\n\n\u003cimg src=\"src/assets/gif/gallery.gif\" alt=\"gallery\" width=\"20%\"/\u003e\u003cimg src=\"src/assets/gif/pulltorefresh.gif\" alt=\"pullto refresh\" width=\"20%\"/\u003e\u003cimg src=\"src/assets/gif/feature.gif\" alt=\"feature discovery\" width=\"20%\"/\u003e\u003cimg src=\"src/assets/gif/dialog.gif\" alt=\"dialog\" width=\"20%\"/\u003e\u003cimg src=\"src/assets/gif/bottomsheet.gif\" alt=\"bottom sheet\" width=\"20%\"/\u003e\n\n# ✨ Features\n\n- Twitter inspired Image Gallery\n- Material Design Pull-to-Refresh\n- Flexible Dialog Component\n- Feature Discovery\n- Material Design App Bar for Ionic Tabs\n- [more components](https://fivethree-team.github.io/ionic-4-components/components)\n\n# 📦 Installation\n\nTo get started, install the package from npm. The latest version supports Ionic 4 and Angular \u003e= 7.\n\n## Install the UI Library\n\nYou can use either npm or yarn to install `@fivethree/core` from npm.\n\n```bash\nnpm install --save @fivethree/core @angular/animations\n```\n\n## Configure your Ionic App\n\nOnce the packages are installed, import `BrowserAnimationsModule` in `app.module.ts`:\n\n```typescript\nimport { NgModule } from '@angular/core';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\n\n@NgModule({\n  imports: [\n    ...\n    BrowserAnimationsModule,\n    ...\n  ]\n})\nexport class AppModule {}\n```\n\n## Usage Instructions\n\nTo use the **UI Library** import one of the feature modules (e.g. FivGalleryModule) into a Page or Component Module.\n\nFor example:\n\n```typescript\nimport { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { IonicModule } from '@ionic/angular';\nimport { FormsModule } from '@angular/forms';\nimport { RouterModule } from '@angular/router';\nimport { FivGalleryModule } from '@fivethree/core';\n\nimport { HomePage } from './home.page';\n\n@NgModule({\n  imports: [\n    CommonModule,\n    FormsModule,\n    IonicModule,\n    RouterModule.forChild([\n      {\n        path: '',\n        component: HomePage\n      }\n    ]),\n    FivGalleryModule\n  ],\n  declarations: [HomePage]\n})\nexport class HomePageModule {}\n```\n\n## 🔨 Development\n\nThis package is under active construction.\n\n- Run `ng build core` to rebuild the component library.\n- Run `ionic s` to serve the project site.\n","funding_links":[],"categories":["Components","Complete projects"],"sub_categories":["UI Library","Blogs and tutorials"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffivethree-team%2Fionic-4-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffivethree-team%2Fionic-4-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffivethree-team%2Fionic-4-components/lists"}