Skip to content

Commit

Permalink
fix: fix for bad output range #61
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardLindhout committed Jan 29, 2024
1 parent 41d9340 commit dd1728b
Show file tree
Hide file tree
Showing 5 changed files with 332 additions and 267 deletions.
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"expo-status-bar": "~1.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.3",
"react-native": "0.72.6",
"react-native-pager-view": "^6.2.0",
"react-native-paper": "^5.9.1",
"react-native-safe-area-context": "4.6.3",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@expo/webpack-config": "^18.1.2",
"@expo/webpack-config": "^19.0.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^5.0.0"
},
Expand Down
28 changes: 14 additions & 14 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,20 +141,20 @@ function App({
>
<ExploreWitHookExamples />
</TabScreen>
{showFlightTab && (
<TabScreen
label="Flights"
icon={showIcons ? 'airplane' : undefined}
>
<ScreenWithText text={'Flights'} />
</TabScreen>
)}
<TabScreen
label="Trips"
icon={showIcons ? 'bag-personal' : undefined}
>
<ScreenWithText text={'Trips'} />
</TabScreen>
{/*{showFlightTab && (*/}
{/* <TabScreen*/}
{/* label="Flights"*/}
{/* icon={showIcons ? 'airplane' : undefined}*/}
{/* >*/}
{/* <ScreenWithText text={'Flights'} />*/}
{/* </TabScreen>*/}
{/*)}*/}
{/*<TabScreen*/}
{/* label="Trips"*/}
{/* icon={showIcons ? 'bag-personal' : undefined}*/}
{/*>*/}
{/* <ScreenWithText text={'Trips'} />*/}
{/*</TabScreen>*/}
</Tabs>
) : (
<Tabs {...tabProps}>
Expand Down
Loading

0 comments on commit dd1728b

Please sign in to comment.