Skip to content

Commit 4471b55

Browse files
author
xxKRASHxx
committed
add readme
1 parent 61bbe23 commit 4471b55

File tree

3 files changed

+186
-0
lines changed

3 files changed

+186
-0
lines changed

.gitignore

Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/node,visualstudiocode,yarn
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,visualstudiocode,yarn
4+
5+
### Node ###
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
lerna-debug.log*
13+
.pnpm-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
# Runtime data
19+
pids
20+
*.pid
21+
*.seed
22+
*.pid.lock
23+
24+
# Directory for instrumented libs generated by jscoverage/JSCover
25+
lib-cov
26+
27+
# Coverage directory used by tools like istanbul
28+
coverage
29+
*.lcov
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (https://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
jspm_packages/
49+
50+
# Snowpack dependency directory (https://snowpack.dev/)
51+
web_modules/
52+
53+
# TypeScript cache
54+
*.tsbuildinfo
55+
56+
# Optional npm cache directory
57+
.npm
58+
59+
# Optional eslint cache
60+
.eslintcache
61+
62+
# Microbundle cache
63+
.rpt2_cache/
64+
.rts2_cache_cjs/
65+
.rts2_cache_es/
66+
.rts2_cache_umd/
67+
68+
# Optional REPL history
69+
.node_repl_history
70+
71+
# Output of 'npm pack'
72+
*.tgz
73+
74+
# Yarn Integrity file
75+
.yarn-integrity
76+
77+
# dotenv environment variables file
78+
.env
79+
.env.test
80+
.env.production
81+
82+
# parcel-bundler cache (https://parceljs.org/)
83+
.cache
84+
.parcel-cache
85+
86+
# Next.js build output
87+
.next
88+
out
89+
90+
# Nuxt.js build / generate output
91+
.nuxt
92+
dist
93+
94+
# Gatsby files
95+
.cache/
96+
# Comment in the public line in if your project uses Gatsby and not Next.js
97+
# https://nextjs.org/blog/next-9-1#public-directory-support
98+
# public
99+
100+
# vuepress build output
101+
.vuepress/dist
102+
103+
# Serverless directories
104+
.serverless/
105+
106+
# FuseBox cache
107+
.fusebox/
108+
109+
# DynamoDB Local files
110+
.dynamodb/
111+
112+
# TernJS port file
113+
.tern-port
114+
115+
# Stores VSCode versions used for testing VSCode extensions
116+
.vscode-test
117+
118+
# yarn v2
119+
.yarn/cache
120+
.yarn/unplugged
121+
.yarn/build-state.yml
122+
.yarn/install-state.gz
123+
.pnp.*
124+
125+
### Node Patch ###
126+
# Serverless Webpack directories
127+
.webpack/
128+
129+
### VisualStudioCode ###
130+
.vscode/*
131+
!.vscode/settings.json
132+
!.vscode/tasks.json
133+
!.vscode/launch.json
134+
!.vscode/extensions.json
135+
*.code-workspace
136+
137+
# Local History for Visual Studio Code
138+
.history/
139+
140+
### VisualStudioCode Patch ###
141+
# Ignore all local history of files
142+
.history
143+
.ionide
144+
145+
### yarn ###
146+
# https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored
147+
148+
.yarn/*
149+
!.yarn/releases
150+
!.yarn/plugins
151+
!.yarn/sdks
152+
!.yarn/versions
153+
154+
# if you are NOT using Zero-installs, then:
155+
# comment the following lines
156+
!.yarn/cache
157+
158+
# and uncomment the following lines
159+
# .pnp.*
160+
161+
# End of https://www.toptal.com/developers/gitignore/api/node,visualstudiocode,yarn

.npmignore

Whitespace-only changes.

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
11
# react-native-fix-fetch-blob
22
A library to help you fix react-native-fetch-blob on react-native >0.60.x
3+
4+
5+
6+
## A library to help you fix images on ios 14 for react-native
7+
8+
## Usage
9+
**You don't need to install this package in order to fix images.**
10+
Add a postinstall script in your package.json and every time you will install dependencies the script will run fixing the problem.
11+
12+
1. add postinstall script (example below);
13+
2. run `yarn install` or `npm i` if you use npm;
14+
3. rebuild project in Xcode;
15+
16+
### Example package.json with postinstall script
17+
```json
18+
{
19+
"name": "ReactNativeApp",
20+
"scripts": {
21+
"android": "react-native run-android",
22+
"ios": "react-native run-ios",
23+
"start": "react-native start",
24+
"postinstall": "npx react-native-fix-fetch-blob"
25+
}
26+
}
27+
```

0 commit comments

Comments
 (0)