mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-03 20:48:26 +01:00
WIP
This commit is contained in:
@@ -3,5 +3,5 @@ export type ChangeEventPayload = {
|
||||
};
|
||||
|
||||
export type VlcPlayerViewProps = {
|
||||
name: string;
|
||||
source: string;
|
||||
};
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { requireNativeViewManager } from 'expo-modules-core';
|
||||
import * as React from 'react';
|
||||
import { requireNativeViewManager } from "expo-modules-core";
|
||||
import * as React from "react";
|
||||
|
||||
import { VlcPlayerViewProps } from './VlcPlayer.types';
|
||||
import { VlcPlayerViewProps } from "./VlcPlayer.types";
|
||||
|
||||
const NativeView: React.ComponentType<VlcPlayerViewProps> =
|
||||
requireNativeViewManager('VlcPlayer');
|
||||
requireNativeViewManager("VlcPlayer");
|
||||
|
||||
export default function VlcPlayerView(props: VlcPlayerViewProps) {
|
||||
return <NativeView {...props} />;
|
||||
|
||||
Reference in New Issue
Block a user