create-expo-stack 2.4.3 → 2.5.0-next.00da55e
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 +213 -156
- package/build/commands/create-expo-stack.js +62 -56
- package/build/templates/base/App.tsx.ejs +51 -91
- package/build/templates/base/app.json.ejs +6 -0
- package/build/templates/base/components/BackButton.tsx.ejs +23 -0
- package/build/templates/base/components/Button.tsx.ejs +40 -0
- package/build/templates/base/components/EditScreenInfo.tsx.ejs +55 -0
- package/build/templates/base/components/HeaderButton.tsx.ejs +28 -0
- package/build/templates/base/components/ScreenContent.tsx.ejs +38 -0
- package/build/templates/base/components/TabBarIcon.tsx.ejs +15 -0
- package/build/templates/base/package.json.ejs +17 -7
- package/build/templates/base/prettier.config.js.ejs +11 -0
- package/build/templates/packages/expo-router/drawer/app/(drawer)/(tabs)/_layout.tsx.ejs +1 -13
- package/build/templates/packages/expo-router/drawer/app/(drawer)/(tabs)/index.tsx.ejs +18 -84
- package/build/templates/packages/expo-router/drawer/app/(drawer)/(tabs)/two.tsx.ejs +18 -84
- package/build/templates/packages/expo-router/drawer/app/(drawer)/_layout.tsx.ejs +4 -18
- package/build/templates/packages/expo-router/drawer/app/(drawer)/index.tsx.ejs +12 -80
- package/build/templates/packages/expo-router/drawer/app/_layout.tsx.ejs +4 -0
- package/build/templates/packages/expo-router/drawer/app/modal.tsx.ejs +16 -92
- package/build/templates/packages/expo-router/stack/app/_layout.tsx.ejs +3 -0
- package/build/templates/packages/expo-router/stack/app/details.tsx.ejs +17 -171
- package/build/templates/packages/expo-router/stack/app/index.tsx.ejs +23 -187
- package/build/templates/packages/expo-router/tabs/app/(tabs)/_layout.tsx.ejs +6 -50
- package/build/templates/packages/expo-router/tabs/app/(tabs)/index.tsx.ejs +18 -84
- package/build/templates/packages/expo-router/tabs/app/(tabs)/two.tsx.ejs +18 -83
- package/build/templates/packages/expo-router/tabs/app/_layout.tsx.ejs +3 -0
- package/build/templates/packages/expo-router/tabs/app/modal.tsx.ejs +17 -92
- package/build/templates/packages/i18next/components/InternalizationExample.tsx.ejs +23 -0
- package/build/templates/packages/i18next/core/i18n/fallbackChecker.ts.ejs +13 -0
- package/build/templates/packages/i18next/core/i18n/init.ts.ejs +24 -0
- package/build/templates/packages/i18next/core/i18n/languageDetector.ts.ejs +13 -0
- package/build/templates/packages/i18next/translation/en.json.ejs +8 -0
- package/build/templates/packages/i18next/translation/fr.json.ejs +8 -0
- package/build/templates/packages/i18next/translation/index.ts.ejs +20 -0
- package/build/templates/packages/nativewind/components/BackButton.tsx.ejs +18 -0
- package/build/templates/packages/nativewind/components/Button.tsx.ejs +14 -0
- package/build/templates/packages/nativewind/components/EditScreenInfo.tsx.ejs +40 -0
- package/build/templates/packages/nativewind/components/ScreenContent.tsx.ejs +25 -0
- package/build/templates/packages/react-navigation/App.tsx.ejs +4 -1
- package/build/templates/packages/react-navigation/navigation/drawer-navigator.tsx.ejs +14 -26
- package/build/templates/packages/react-navigation/navigation/index.tsx.ejs +2 -101
- package/build/templates/packages/react-navigation/navigation/tab-navigator.tsx.ejs +8 -62
- package/build/templates/packages/react-navigation/screens/details.tsx.ejs +22 -108
- package/build/templates/packages/react-navigation/screens/home.tsx.ejs +3 -82
- package/build/templates/packages/react-navigation/screens/modal.tsx.ejs +16 -104
- package/build/templates/packages/react-navigation/screens/one.tsx.ejs +2 -97
- package/build/templates/packages/react-navigation/screens/overview.tsx.ejs +37 -182
- package/build/templates/packages/react-navigation/screens/two.tsx.ejs +3 -98
- package/build/templates/packages/restyle/components/BackButton.tsx.ejs +15 -0
- package/build/templates/packages/restyle/components/Button.tsx.ejs +32 -0
- package/build/templates/packages/restyle/components/EditScreenInfo.tsx.ejs +29 -0
- package/build/templates/packages/restyle/components/ScreenContent.tsx.ejs +20 -0
- package/build/templates/packages/tamagui/components/BackButton.tsx.ejs +19 -0
- package/build/templates/packages/tamagui/components/Button.tsx.ejs +9 -0
- package/build/templates/packages/tamagui/components/EditScreenInfo.tsx.ejs +29 -0
- package/build/templates/packages/tamagui/components/ScreenContent.tsx.ejs +22 -0
- package/build/templates/packages/unistyles/components/BackButton.tsx.ejs +26 -0
- package/build/templates/packages/unistyles/components/Button.tsx.ejs +12 -0
- package/build/templates/packages/unistyles/components/EditScreenInfo.tsx.ejs +61 -0
- package/build/templates/packages/unistyles/components/ScreenContent.tsx.ejs +24 -0
- package/build/templates/packages/unistyles/theme.ts.ejs +30 -46
- package/build/types/types.d.ts +3 -2
- package/build/types/utilities/configureProjectFiles.d.ts +1 -1
- package/build/types/utilities/generateProjectFiles.d.ts +1 -1
- package/build/types/utilities/getPackageManager.d.ts +1 -0
- package/build/types/utilities/validateProjectName.d.ts +1 -1
- package/build/types.js +3 -2
- package/build/utilities/configureProjectFiles.js +86 -19
- package/build/utilities/generateProjectFiles.js +8 -4
- package/build/utilities/getPackageManager.js +9 -2
- package/build/utilities/printOutput.js +4 -2
- package/build/utilities/renderTitle.js +8 -1
- package/build/utilities/runCLI.js +124 -34
- package/build/utilities/showHelp.js +4 -1
- package/build/utilities/validateProjectName.js +14 -8
- package/package.json +66 -66
- package/build/templates/base/.prettierrc +0 -7
- package/build/templates/packages/expo-router/drawer/components/edit-screen-info.tsx.ejs +0 -153
- package/build/templates/packages/expo-router/index.js +0 -4
- package/build/templates/packages/expo-router/index.ts +0 -1
- package/build/templates/packages/expo-router/tabs/components/edit-screen-info.tsx.ejs +0 -153
- package/build/templates/packages/react-navigation/components/edit-screen-info.tsx.ejs +0 -180
- package/build/types/templates/packages/expo-router/index.d.ts +0 -1
- /package/build/templates/packages/expo-router/drawer/app/{[...unmatched].tsx.ejs → +not-found.tsx.ejs} +0 -0
- /package/build/templates/packages/expo-router/stack/app/{[...unmatched].tsx.ejs → +not-found.tsx.ejs} +0 -0
- /package/build/templates/packages/expo-router/tabs/app/{[...unmatched].tsx.ejs → +not-found.tsx.ejs} +0 -0
package/README.md
CHANGED
|
@@ -12,14 +12,20 @@
|
|
|
12
12
|
|
|
13
13
|
## Sponsors
|
|
14
14
|
|
|
15
|
-
NativeWind
|
|
16
|
-
Restyle
|
|
17
|
-
StyleSheets
|
|
18
|
-
Tamagui
|
|
19
|
-
|
|
20
15
|
Support this project by <a href="https://github.com/sponsors/danstepanov" target="_blank">becoming a sponsor</a>. Your logo will show up here with a link to your website.
|
|
21
16
|
|
|
22
|
-
<a href="https://galaxies.dev/" target="_blank" style="margin-top: 10px;margin-right: 10px; margin-bottom: 10px;"
|
|
17
|
+
<a href="https://galaxies.dev/" target="_blank" style="margin-top: 10px;margin-right: 10px; margin-bottom: 10px;" >
|
|
18
|
+
<img src="https://expostack.dev/galaxies-logo.svg" style="border-radius: 50%;">
|
|
19
|
+
</a>
|
|
20
|
+
<a href="https://expo.dev/" target="_blank" style="margin: 10px;">
|
|
21
|
+
<img src="https://expostack.dev/expo-logo.svg" style="border-radius: 50%;">
|
|
22
|
+
</a>
|
|
23
|
+
<a href="https://github.com/derkweijers" target="_blank" style="margin: 10px;">
|
|
24
|
+
<img src="https://avatars.githubusercontent.com/u/11644998?v=4" height="64" width="64" style="border-radius: 50%;">
|
|
25
|
+
</a>
|
|
26
|
+
<a href="https://paradigmpost.com" target="_blank" style="margin: 10px;">
|
|
27
|
+
<img src="https://expostack.dev/paradigmpost.png" height="64" width="64" style="border-radius: 50%;">
|
|
28
|
+
</a>
|
|
23
29
|
|
|
24
30
|
## Description
|
|
25
31
|
|
|
@@ -43,19 +49,19 @@ Each project is generated based on the results of the CLI, on a per-file basis.
|
|
|
43
49
|
|
|
44
50
|
| Library | Category | Version | Description |
|
|
45
51
|
| ------------------ | ------------------- | ------- | ---------------------------------------------- |
|
|
46
|
-
| React Native | Mobile Framework | v0.
|
|
52
|
+
| React Native | Mobile Framework | v0.73 | The best cross-platform mobile framework |
|
|
47
53
|
| React | UI Framework | v18 | The most popular UI framework in the world |
|
|
48
|
-
| TypeScript | Language |
|
|
54
|
+
| TypeScript | Language | v5 | Static typechecking |
|
|
49
55
|
| React Navigation | Navigation | v6 | Performant and consistent navigation framework |
|
|
50
|
-
| Expo | SDK |
|
|
56
|
+
| Expo | SDK | v50 | Allows (optional) Expo modules |
|
|
51
57
|
| Expo Font | Custom Fonts | v11 | Import custom fonts |
|
|
52
58
|
| Expo Linking | URL Handling | v5 | Open your app via a URL |
|
|
53
|
-
| Expo Router | Navigation |
|
|
59
|
+
| Expo Router | Navigation | v3 | File-based routing in React-Native |
|
|
54
60
|
| Expo Splash Screen | Splash Screen | v0.18 | Custom splash screen |
|
|
55
61
|
| Expo Status Bar | Status Bar Library | v1 | Status bar support |
|
|
56
62
|
| Expo System UI | System UI Library | v2 | System UI support |
|
|
57
63
|
| Expo Web Browser | Web Browser Library | v12 | Open links in the browser |
|
|
58
|
-
| NativeWind | UI Framework |
|
|
64
|
+
| NativeWind | UI Framework | v4 | Tailwind CSS for React Native |
|
|
59
65
|
| Restyle | UI Framework | v2 | Theme-based styling library for React Native |
|
|
60
66
|
| Tamagui | UI Framework | v1 | Universal UI with a smart optimizing compiler |
|
|
61
67
|
| Unistyles | UI Framework | v2 | Superset of StyleSheet |
|
|
@@ -84,153 +90,204 @@ If you'd like help with your React Native/Expo app or are just looking for a tec
|
|
|
84
90
|
|
|
85
91
|
Thanks go to these wonderful people:
|
|
86
92
|
|
|
93
|
+
<!-- readme: contributors -start -->
|
|
87
94
|
<table>
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
95
|
+
<tr>
|
|
96
|
+
<td align="center">
|
|
97
|
+
<a href="https://github.com/danstepanov">
|
|
98
|
+
<img src="https://avatars.githubusercontent.com/u/5482800?v=4" width="100;" alt="danstepanov"/>
|
|
99
|
+
<br />
|
|
100
|
+
<sub><b>Dan Stepanov</b></sub>
|
|
101
|
+
</a>
|
|
102
|
+
</td>
|
|
103
|
+
<td align="center">
|
|
104
|
+
<a href="https://github.com/hqasmei">
|
|
105
|
+
<img src="https://avatars.githubusercontent.com/u/39573679?v=4" width="100;" alt="hqasmei"/>
|
|
106
|
+
<br />
|
|
107
|
+
<sub><b>Hosna Qasmei</b></sub>
|
|
108
|
+
</a>
|
|
109
|
+
</td>
|
|
110
|
+
<td align="center">
|
|
111
|
+
<a href="https://github.com/sammoore">
|
|
112
|
+
<img src="https://avatars.githubusercontent.com/u/2035492?v=4" width="100;" alt="sammoore"/>
|
|
113
|
+
<br />
|
|
114
|
+
<sub><b>Sam Moore</b></sub>
|
|
115
|
+
</a>
|
|
116
|
+
</td>
|
|
117
|
+
<td align="center">
|
|
118
|
+
<a href="https://github.com/ernestoresende">
|
|
119
|
+
<img src="https://avatars.githubusercontent.com/u/55156145?v=4" width="100;" alt="ernestoresende"/>
|
|
120
|
+
<br />
|
|
121
|
+
<sub><b>Ernesto Resende</b></sub>
|
|
122
|
+
</a>
|
|
123
|
+
</td>
|
|
124
|
+
<td align="center">
|
|
125
|
+
<a href="https://github.com/frankcalise">
|
|
126
|
+
<img src="https://avatars.githubusercontent.com/u/374022?v=4" width="100;" alt="frankcalise"/>
|
|
127
|
+
<br />
|
|
128
|
+
<sub><b>Frank Calise</b></sub>
|
|
129
|
+
</a>
|
|
130
|
+
</td>
|
|
131
|
+
<td align="center">
|
|
132
|
+
<a href="https://github.com/ludwig-pro">
|
|
133
|
+
<img src="https://avatars.githubusercontent.com/u/62896243?v=4" width="100;" alt="ludwig-pro"/>
|
|
134
|
+
<br />
|
|
135
|
+
<sub><b>Ludwig</b></sub>
|
|
136
|
+
</a>
|
|
137
|
+
</td></tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td align="center">
|
|
140
|
+
<a href="https://github.com/PickleNik">
|
|
141
|
+
<img src="https://avatars.githubusercontent.com/u/31113245?v=4" width="100;" alt="PickleNik"/>
|
|
142
|
+
<br />
|
|
143
|
+
<sub><b>Null</b></sub>
|
|
144
|
+
</a>
|
|
145
|
+
</td>
|
|
146
|
+
<td align="center">
|
|
147
|
+
<a href="https://github.com/kratos-respawned">
|
|
148
|
+
<img src="https://avatars.githubusercontent.com/u/87561983?v=4" width="100;" alt="kratos-respawned"/>
|
|
149
|
+
<br />
|
|
150
|
+
<sub><b>Gaurav Bhandari</b></sub>
|
|
151
|
+
</a>
|
|
152
|
+
</td>
|
|
153
|
+
<td align="center">
|
|
154
|
+
<a href="https://github.com/finnbayer">
|
|
155
|
+
<img src="https://avatars.githubusercontent.com/u/115630860?v=4" width="100;" alt="finnbayer"/>
|
|
156
|
+
<br />
|
|
157
|
+
<sub><b>Finn Bayer</b></sub>
|
|
158
|
+
</a>
|
|
159
|
+
</td>
|
|
160
|
+
<td align="center">
|
|
161
|
+
<a href="https://github.com/saimon24">
|
|
162
|
+
<img src="https://avatars.githubusercontent.com/u/2514208?v=4" width="100;" alt="saimon24"/>
|
|
163
|
+
<br />
|
|
164
|
+
<sub><b>Simon Grimm</b></sub>
|
|
165
|
+
</a>
|
|
166
|
+
</td>
|
|
167
|
+
<td align="center">
|
|
168
|
+
<a href="https://github.com/todevmilen">
|
|
169
|
+
<img src="https://avatars.githubusercontent.com/u/78319110?v=4" width="100;" alt="todevmilen"/>
|
|
170
|
+
<br />
|
|
171
|
+
<sub><b>Milen Todev</b></sub>
|
|
172
|
+
</a>
|
|
173
|
+
</td>
|
|
174
|
+
<td align="center">
|
|
175
|
+
<a href="https://github.com/alitnk">
|
|
176
|
+
<img src="https://avatars.githubusercontent.com/u/35243344?v=4" width="100;" alt="alitnk"/>
|
|
177
|
+
<br />
|
|
178
|
+
<sub><b>Alireza Zamani</b></sub>
|
|
179
|
+
</a>
|
|
180
|
+
</td></tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td align="center">
|
|
183
|
+
<a href="https://github.com/dannyhw">
|
|
184
|
+
<img src="https://avatars.githubusercontent.com/u/3481514?v=4" width="100;" alt="dannyhw"/>
|
|
185
|
+
<br />
|
|
186
|
+
<sub><b>Daniel Williams</b></sub>
|
|
187
|
+
</a>
|
|
188
|
+
</td>
|
|
189
|
+
<td align="center">
|
|
190
|
+
<a href="https://github.com/catalinmiron">
|
|
191
|
+
<img src="https://avatars.githubusercontent.com/u/2805320?v=4" width="100;" alt="catalinmiron"/>
|
|
192
|
+
<br />
|
|
193
|
+
<sub><b>Catalin Miron</b></sub>
|
|
194
|
+
</a>
|
|
195
|
+
</td>
|
|
196
|
+
<td align="center">
|
|
197
|
+
<a href="https://github.com/b0iq">
|
|
198
|
+
<img src="https://avatars.githubusercontent.com/u/106549013?v=4" width="100;" alt="b0iq"/>
|
|
199
|
+
<br />
|
|
200
|
+
<sub><b>Null</b></sub>
|
|
201
|
+
</a>
|
|
202
|
+
</td>
|
|
203
|
+
<td align="center">
|
|
204
|
+
<a href="https://github.com/coyksdev">
|
|
205
|
+
<img src="https://avatars.githubusercontent.com/u/19565694?v=4" width="100;" alt="coyksdev"/>
|
|
206
|
+
<br />
|
|
207
|
+
<sub><b>Gerald</b></sub>
|
|
208
|
+
</a>
|
|
209
|
+
</td>
|
|
210
|
+
<td align="center">
|
|
211
|
+
<a href="https://github.com/andrew-levy">
|
|
212
|
+
<img src="https://avatars.githubusercontent.com/u/29075740?v=4" width="100;" alt="andrew-levy"/>
|
|
213
|
+
<br />
|
|
214
|
+
<sub><b>Andrew Levy</b></sub>
|
|
215
|
+
</a>
|
|
216
|
+
</td>
|
|
217
|
+
<td align="center">
|
|
218
|
+
<a href="https://github.com/gialencar">
|
|
219
|
+
<img src="https://avatars.githubusercontent.com/u/11895696?v=4" width="100;" alt="gialencar"/>
|
|
220
|
+
<br />
|
|
221
|
+
<sub><b>Gilson Alencar</b></sub>
|
|
222
|
+
</a>
|
|
223
|
+
</td></tr>
|
|
224
|
+
<tr>
|
|
225
|
+
<td align="center">
|
|
226
|
+
<a href="https://github.com/mwarger">
|
|
227
|
+
<img src="https://avatars.githubusercontent.com/u/686823?v=4" width="100;" alt="mwarger"/>
|
|
228
|
+
<br />
|
|
229
|
+
<sub><b>Mat Warger</b></sub>
|
|
230
|
+
</a>
|
|
231
|
+
</td>
|
|
232
|
+
<td align="center">
|
|
233
|
+
<a href="https://github.com/gabimoncha">
|
|
234
|
+
<img src="https://avatars.githubusercontent.com/u/39256258?v=4" width="100;" alt="gabimoncha"/>
|
|
235
|
+
<br />
|
|
236
|
+
<sub><b>Gabimoncha</b></sub>
|
|
237
|
+
</a>
|
|
238
|
+
</td>
|
|
239
|
+
<td align="center">
|
|
240
|
+
<a href="https://github.com/gwenoleR">
|
|
241
|
+
<img src="https://avatars.githubusercontent.com/u/10418241?v=4" width="100;" alt="gwenoleR"/>
|
|
242
|
+
<br />
|
|
243
|
+
<sub><b>Null</b></sub>
|
|
244
|
+
</a>
|
|
245
|
+
</td>
|
|
246
|
+
<td align="center">
|
|
247
|
+
<a href="https://github.com/zamplyy">
|
|
248
|
+
<img src="https://avatars.githubusercontent.com/u/26258710?v=4" width="100;" alt="zamplyy"/>
|
|
249
|
+
<br />
|
|
250
|
+
<sub><b>Joar Karlsson</b></sub>
|
|
251
|
+
</a>
|
|
252
|
+
</td>
|
|
253
|
+
<td align="center">
|
|
254
|
+
<a href="https://github.com/Joehoel">
|
|
255
|
+
<img src="https://avatars.githubusercontent.com/u/31251240?v=4" width="100;" alt="Joehoel"/>
|
|
256
|
+
<br />
|
|
257
|
+
<sub><b>Joël Kuijper</b></sub>
|
|
258
|
+
</a>
|
|
259
|
+
</td>
|
|
260
|
+
<td align="center">
|
|
261
|
+
<a href="https://github.com/asapMaki">
|
|
262
|
+
<img src="https://avatars.githubusercontent.com/u/30200380?v=4" width="100;" alt="asapMaki"/>
|
|
263
|
+
<br />
|
|
264
|
+
<sub><b>Mahir Kadić</b></sub>
|
|
265
|
+
</a>
|
|
266
|
+
</td></tr>
|
|
267
|
+
<tr>
|
|
268
|
+
<td align="center">
|
|
269
|
+
<a href="https://github.com/Hacksore">
|
|
270
|
+
<img src="https://avatars.githubusercontent.com/u/996134?v=4" width="100;" alt="Hacksore"/>
|
|
271
|
+
<br />
|
|
272
|
+
<sub><b>Sean Boult</b></sub>
|
|
273
|
+
</a>
|
|
274
|
+
</td>
|
|
275
|
+
<td align="center">
|
|
276
|
+
<a href="https://github.com/bautistaaa">
|
|
277
|
+
<img src="https://avatars.githubusercontent.com/u/3660667?v=4" width="100;" alt="bautistaaa"/>
|
|
278
|
+
<br />
|
|
279
|
+
<sub><b>Null</b></sub>
|
|
280
|
+
</a>
|
|
281
|
+
</td>
|
|
282
|
+
<td align="center">
|
|
283
|
+
<a href="https://github.com/debugtheworldbot">
|
|
284
|
+
<img src="https://avatars.githubusercontent.com/u/62830430?v=4" width="100;" alt="debugtheworldbot"/>
|
|
285
|
+
<br />
|
|
286
|
+
<sub><b>Pipizhu</b></sub>
|
|
287
|
+
</a>
|
|
288
|
+
</td></tr>
|
|
233
289
|
</table>
|
|
290
|
+
<!-- readme: contributors -end -->
|
|
234
291
|
|
|
235
292
|
[downloads-image]: https://img.shields.io/npm/dm/create-expo-stack?color=364fc7&logoColor=364fc7
|
|
236
293
|
[npm-url]: https://www.npmjs.com/package/create-expo-stack
|