Skip to content

Commit d8b5878

Browse files
committed
chore: remove some testing imports etc.
1 parent 0f23a31 commit d8b5878

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,8 @@ dist
116116

117117
# Android
118118
#
119-
.gradle
119+
.gradle
120+
121+
# Example Generated Files
122+
123+
/example/ios/Pods/

example/src/App.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import * as React from 'react';
22

3-
import {ActivityIndicator, Button, StyleSheet, Text, View} from 'react-native';
4-
import {VLCPlayerView, VLCPlayer} from 'react-native-vlc-media-player';
3+
import {ActivityIndicator, Button, StyleSheet} from 'react-native';
4+
import {VLCPlayer} from 'react-native-vlc-media-player';
55

66
export default function App() {
7-
console.log("PlayerView: ", VLCPlayerView)
8-
console.log("P: ", VLCPlayer)
97
const [pause, setPause] = React.useState(false)
108

119
return (
@@ -28,7 +26,7 @@ export default function App() {
2826
onEnded={() => {
2927
console.log("End reached");
3028
}}
31-
// onProgress={console.log}
29+
onProgress={console.log}
3230
paused={pause}
3331
seek={0.98}
3432
rate={1}

0 commit comments

Comments
 (0)