Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add carousel component #18

Merged
merged 3 commits into from
Jan 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0.0
1 change: 1 addition & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Override Yarn command so we can automatically setup the repo on running `yarn`

yarn-path "scripts/bootstrap.js"
network-timeout 600000
2 changes: 2 additions & 0 deletions example/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import PageViews from '~/views/Page';
import TextViews from '~/views/Text';
import ViewViews from '~/views/View';
import WebViewViews from '~/views/WebView';
import CarouselViews from '~/views/Carousel';

const Stack = createNativeStackNavigator();

Expand All @@ -33,6 +34,7 @@ const App = () => {
<Stack.Screen name="Text" component={TextViews} />
<Stack.Screen name="View" component={ViewViews} />
<Stack.Screen name="WebView" component={WebViewViews} />
<Stack.Screen name="Carousel" component={CarouselViews} />
</Stack.Navigator>
</NavigationContainer>
);
Expand Down
2 changes: 0 additions & 2 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ target 'example' do
:hermes_enabled => false
)

pod 'react-native-webview', :path => '../node_modules/react-native-webview'

target 'exampleTests' do
inherit! :complete
# Pods for testing
Expand Down
Loading