You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -254,7 +260,14 @@ A lower value results in more frequent updates, offering smoother visual updates
254
260
<td><code>ViewStyle</code></td>
255
261
<td><code>{}</code></td>
256
262
<td><code>false</code></td>
257
-
<td> Accepts a React Native ViewStyle object. This applied to the outermost container of the component, can be used to set a fixed width, height, etc </td>
263
+
<td> Accepts a React Native <code>ViewStyle</code> object. This property applies to the outermost container of the component and can be used to set various styling aspects such as fixed width, height, background color, margin, padding, and more. </td>
264
+
</tr>
265
+
<tr>
266
+
<td><code>itemContainerStyle</code></td>
267
+
<td><code>ViewStyle</code></td>
268
+
<td><code>{}</code></td>
269
+
<td><code>false</code></td>
270
+
<td> Accepts a React Native <code>ViewStyle</code> object. This applies to the container of each item in the grid layout and can be used to create a gap between each grid item with padding, apply background color, etc. </td>
258
271
</tr>
259
272
</tbody>
260
273
</table>
@@ -350,7 +363,14 @@ A lower value results in more frequent updates, offering smoother visual updates
350
363
<td><code>ViewStyle</code></td>
351
364
<td><code>{}</code></td>
352
365
<td><code>false</code></td>
353
-
<td> Accepts a React Native ViewStyle object. This applied to the outermost container of the component, can be used to set a fixed width, height, etc </td>
366
+
<td> Accepts a React Native <code>ViewStyle</code> object. This property applies to the outermost container of the component and can be used to set various styling aspects such as fixed width, height, background color, margin, padding, and more. </td>
367
+
</tr>
368
+
<tr>
369
+
<td><code>itemContainerStyle</code></td>
370
+
<td><code>ViewStyle</code></td>
371
+
<td><code>{}</code></td>
372
+
<td><code>false</code></td>
373
+
<td> Accepts a React Native <code>ViewStyle</code> object. This applies to the container of each item in the grid layout and can be used to create a gap between each grid item with padding, apply background color, etc. </td>
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "react-native-flexible-grid",
3
-
"version": "0.1.4",
3
+
"version": "0.1.5",
4
4
"description": "React Native Flexible Grid is an advanced grid layout system inspired by CSS Grid, designed to facilitate responsive, customizable, and dynamic grid layouts in React Native applications. It supports both responsive and fixed layouts, enabling the creation of intricate designs with minimal effort.",
0 commit comments