react-native-image-collage 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -49
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,6 @@ yarn add react-native-image-collage
|
|
|
38
38
|
- [Props](#props)
|
|
39
39
|
- [Image input formats](#image-input-formats)
|
|
40
40
|
- [Exports](#exports)
|
|
41
|
-
- [Local development](#local-development)
|
|
42
41
|
- [Contributing & issues](#contributing--issues)
|
|
43
42
|
- [License](#license)
|
|
44
43
|
|
|
@@ -525,58 +524,13 @@ import {
|
|
|
525
524
|
|
|
526
525
|
---
|
|
527
526
|
|
|
528
|
-
## Local development
|
|
529
|
-
|
|
530
|
-
```bash
|
|
531
|
-
git clone <repo>
|
|
532
|
-
cd react-native-image-collage
|
|
533
|
-
npm install
|
|
534
|
-
npm run build
|
|
535
|
-
npm run typecheck
|
|
536
|
-
```
|
|
537
|
-
|
|
538
|
-
### Example app (manual testing)
|
|
539
|
-
|
|
540
|
-
An Expo playground lives in `example/`. It is **not** published to npm.
|
|
541
|
-
|
|
542
|
-
```bash
|
|
543
|
-
npm run example
|
|
544
|
-
# or
|
|
545
|
-
cd example && npm install && npx expo start
|
|
546
|
-
```
|
|
547
|
-
|
|
548
|
-
Use the on-screen controls to change image count, `maxVisibleImages`, and entry point (`/viewer`, `/expo`).
|
|
549
|
-
|
|
550
|
-
If you see `private properties are not supported`, stop Metro and run:
|
|
551
|
-
|
|
552
|
-
```bash
|
|
553
|
-
cd example && npx expo start --clear
|
|
554
|
-
```
|
|
555
|
-
|
|
556
|
-
Ensure **Expo Go matches SDK 54** on your physical device.
|
|
557
|
-
|
|
558
|
-
### Link into another app
|
|
559
|
-
|
|
560
|
-
```bash
|
|
561
|
-
npm install /path/to/react-native-image-collage
|
|
562
|
-
```
|
|
563
|
-
|
|
564
|
-
---
|
|
565
|
-
|
|
566
527
|
## Contributing & issues
|
|
567
528
|
|
|
568
|
-
Found a bug
|
|
569
|
-
|
|
570
|
-
**https://github.com/FaisalKhawaj/react-native-image-collage/issues/new/choose**
|
|
571
|
-
|
|
572
|
-
When reporting a bug, please include:
|
|
529
|
+
Found a bug or want to contribute? See the [contributing guide on GitHub](https://github.com/FaisalKhawaj/react-native-image-collage/blob/main/CONTRIBUTING.md) for local setup and the example app.
|
|
573
530
|
|
|
574
|
-
|
|
575
|
-
- Platform (iOS, Android, or both)
|
|
576
|
-
- A short code snippet or steps to reproduce
|
|
577
|
-
- Screenshots if it’s a layout problem
|
|
531
|
+
**Open an issue:** https://github.com/FaisalKhawaj/react-native-image-collage/issues/new/choose
|
|
578
532
|
|
|
579
|
-
|
|
533
|
+
When reporting a bug, include your React Native / Expo version, platform, and steps to reproduce.
|
|
580
534
|
|
|
581
535
|
---
|
|
582
536
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-image-collage",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Facebook/Instagram-style responsive image collage layouts for React Native and Expo — multi-image grids, +N overflow badge, optional full-screen viewer",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|