We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64d9d6f commit d1b41f0Copy full SHA for d1b41f0
.github/dependabot.yml
@@ -8,4 +8,4 @@ updates:
8
- package-ecosystem: "npm" # See documentation for possible values
9
directory: "/" # Location of package manifests
10
schedule:
11
- interval: "weekly"
+ interval: "monthly"
src/flex-grid/index.tsx
@@ -176,8 +176,7 @@ export const FlexGrid: React.FC<FlexGridProps> = ({
176
style={[{ flexGrow: 1 }, style]}
177
onLayout={(event) => {
178
const { width, height } = event.nativeEvent.layout;
179
- console.log(width, height);
180
- setContainerSize({ width, height: 2000 });
+ setContainerSize({ width, height });
181
}}
182
>
183
<ScrollView
0 commit comments