import React from "react"; import { StyleSheet } from "react-native"; import { ThemedText } from "@/components/ThemedText"; import { ThemedView } from "@/components/ThemedView"; interface PlaybackSourceSectionProps { onChanged: () => void; } export const PlaySourceSection: React.FC = ({ onChanged }) => { return ( 播放源配置 播放源配置功能即将上线 ); }; const styles = StyleSheet.create({ section: { padding: 20, marginBottom: 16, borderRadius: 12, borderWidth: 1, borderColor: "#333", }, sectionTitle: { fontSize: 20, fontWeight: "bold", marginBottom: 16, }, placeholder: { fontSize: 14, color: "#888", fontStyle: "italic", }, });