Initial import: Music_Server, MusicFree, catalog-sync

This commit is contained in:
2026-05-23 16:51:14 +08:00
commit 069af30dba
847 changed files with 179878 additions and 0 deletions
@@ -0,0 +1,19 @@
import React from "react";
import { StyleProp, ViewStyle } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
interface IHorizontalSafeAreaViewProps {
mode?: "margin" | "padding";
children: JSX.Element | JSX.Element[];
style?: StyleProp<ViewStyle>;
}
export default function HorizontalSafeAreaView(
props: IHorizontalSafeAreaViewProps,
) {
const { children, style, mode } = props;
return (
<SafeAreaView style={style} mode={mode} edges={["right", "left"]}>
{children}
</SafeAreaView>
);
}