Skip to content

Commit

Permalink
chore: remove some testing imports etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Duell10111 committed Aug 8, 2023
1 parent 842ee71 commit e0d5cbe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,8 @@ dist

# Android
#
.gradle
.gradle

# Example Generated Files

/example/ios/Pods/
8 changes: 3 additions & 5 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import * as React from 'react';

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

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

return (
Expand All @@ -28,7 +26,7 @@ export default function App() {
onEnded={() => {
console.log("End reached");
}}
// onProgress={console.log}
onProgress={console.log}
paused={pause}
seek={0.98}
rate={1}
Expand Down

0 comments on commit e0d5cbe

Please sign in to comment.