{"id":22321351,"url":"https://github.com/khalisafkari/react-native-bigimageviewer","last_synced_at":"2025-11-08T02:03:34.876Z","repository":{"id":57335725,"uuid":"288699563","full_name":"khalisafkari/react-native-bigimageviewer","owner":"khalisafkari","description":"react native Big image viewer supporting pan and zoom","archived":false,"fork":false,"pushed_at":"2020-08-24T00:32:11.000Z","size":1818,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-23T06:27:22.445Z","etag":null,"topics":["bigimageviewer","image","imageview","react-native","react-native-image"],"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/khalisafkari.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-19T10:15:29.000Z","updated_at":"2023-02-19T05:17:53.000Z","dependencies_parsed_at":"2022-09-14T18:50:29.444Z","dependency_job_id":null,"html_url":"https://github.com/khalisafkari/react-native-bigimageviewer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/khalisafkari/react-native-bigimageviewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalisafkari%2Freact-native-bigimageviewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalisafkari%2Freact-native-bigimageviewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalisafkari%2Freact-native-bigimageviewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalisafkari%2Freact-native-bigimageviewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khalisafkari","download_url":"https://codeload.github.com/khalisafkari/react-native-bigimageviewer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalisafkari%2Freact-native-bigimageviewer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267694878,"owners_count":24129149,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bigimageviewer","image","imageview","react-native","react-native-image"],"created_at":"2024-12-04T00:17:45.651Z","updated_at":"2025-11-08T02:03:29.821Z","avatar_url":"https://github.com/khalisafkari.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-bigimageviewer\n\nreact native Big image viewer supporting pan and zoom, with very little memory usage and full\n             featured image loading choices. Powered by\n             [Glide](https://github.com/bumptech/glide)\n\n## Installation\n\n```sh\nyarn add react-native-bigimageviewer\n```\n\n```sh\n// android/build.gradle\n\nallprojects {\n    repositories {\n       maven {\n         url  \"http://dl.bintray.com/piasy/maven\"\n       }\n       ...\n    }\n}\n```\nNote: please put this download url at the first of your repositories part, otherwise, gradle may search in wrong place.\n\n## demo\n\n| | | |\n|:-------------------------:|:-------------------------:|:-------------------------:|\n|\u003cimg width=\"1604\" alt=\"1\" src=\"https://i.ibb.co/bd8zMpq/1.png\"\u003e  |  \u003cimg width=\"1604\" alt=\"2\" src=\"https://i.ibb.co/Sv8Qkbv/2.png\"\u003e|\u003cimg width=\"1604\" alt=\"3\" src=\"https://i.ibb.co/mJJgYB2/3.png\"\u003e|\n\n## Usage\n\n```js\nimport BannerView from 'react-native-bigimageviewer';\n// ...\n\n\u003cBannerView\n        {...imageProps}\n        style={styles.image}\n        source={\n          'https://4youscan.xyz/wp-content/uploads/2020/08/005-2537-900x1280.jpg'\n        }\n        resizeMode={'fitCenter'}\n        loading={true}\n\n/\u003e\n```\n\n## props\n\n```typescript\n\ntype resizeMode =\n  | 'center'\n  | 'centerCrop'\n  | 'centerInside'\n  | 'fitCenter'\n  | 'fitEnd'\n  | 'fitStart'\n  | 'fitXY'\n  | 'start';\n\ninterface imageProps {\n  source: string;\n  loading?: boolean;\n  resizeMode?: resizeMode;\n  style?: StyleProp\u003cImageStyle\u003e;\n  onCacheHit?: Function;\n  onCacheMiss?: Function;\n  onStart?: Function;\n  onProgress?: Function;\n  onFinish?: Function;\n  onSuccess?: Function;\n  onFail?: Function;\n}\n\n```\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhalisafkari%2Freact-native-bigimageviewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhalisafkari%2Freact-native-bigimageviewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhalisafkari%2Freact-native-bigimageviewer/lists"}