Home
last modified time | relevance | path

Searched refs:props (Results 1 – 25 of 116) sorted by relevance

12345

/MusicFree/src/components/base/
H A DlinkText.tsx15 export default function LinkText(props: ILinkTextProps) {
20 {...props}
26 if (props.onPress) {
27 props.onPress(evt);
29 props?.linkTo && openUrl(props.linkTo);
35 {props.children}
H A DtextButton.tsx15 export default function (props: IButtonProps) {
17 props;
20 {...props}
27 props.style,
H A Dinput.tsx12 export default function Input(props: IInputProps) {
13 const {fontColor, hasHorizontalPadding = true} = props;
25 {...props}
31 props?.style,
H A Dimage.tsx8 export default function (props: Omit<IImageProps, 'source'>) {
9 const {uri, emptySrc} = props;
15 return <Image {...props} source={source} />;
H A Dtag.tsx12 export default function Tag(props: ITagProps) {
19 props.containerStyle,
21 <ThemeText style={[styles.tagText, props.style]} fontSize="tag">
22 {props.tagName}
H A DiconButton.tsx18 export function IconButtonWithGesture(props: IIconButtonProps) {
26 } = props;
46 export default function IconButton(props: IIconButtonProps) {
47 const {sizeType = 'normal', fontColor = 'normal', style, color} = props;
53 {...props}
H A DnoPlugin.tsx10 export default function NoPlugin(props: IProps) {
15 {props?.notSupportType
16 ? `支持「${props.notSupportType}」功能的`
H A DlistItem.tsx51 function ListItem(props: IListItemProps) {
61 } = props;
96 function ListItemText(props: IListItemTextProps) {
107 } = props;
141 function ListItemIcon(props: IListItemIconProps) {
152 } = props;
193 function ListItemImage(props: IListItemImageProps) {
203 } = props;
239 function Content(props: IContentProps) {
245 } = props;
[all …]
H A DthemeText.tsx14 export default function ThemeText(props: IThemeTextProps) {
24 } = props;
39 <Text {...props} style={_style} allowFontScaling={false}>
H A Dparagraph.tsx7 export default function Paragraph(props: IParagraphProps) {
8 return <ThemeText style={styles.container} {...props} />;
H A Dswitch.tsx21 export default function ThemeSwitch(props: ISwitchProps) {
22 const {value, onValueChange} = props;
57 props?.style,
H A DhorizontalSafeAreaView.tsx11 props: IHorizontalSafeAreaViewProps,
13 const {children, style, mode} = props;
H A DverticalSafeAreaView.tsx11 props: IVerticalSafeAreaViewProps,
13 const {children, style, mode} = props;
H A Dempty.tsx9 export default function Empty(props: IEmptyProps) {
13 {props?.content ?? '什么都没有呀~'}
H A Ddivider.tsx9 export default function Divider(props: IDividerProps) {
10 const {vertical, style} = props;
/MusicFree/src/lib/react-native-vdebug/src/
H A Dhoc.js5 constructor(props) { argument
6 super(props);
15 {...this.props}
/MusicFree/generator/
H A Dgenerate-assets.mjs48 export default function Icon(props: IProps) {
49 const {name, size} = props;
52 ...props,
53 width: props.width ?? size,
54 height: props.width ?? size
/MusicFree/src/pages/artistDetail/components/content/
H A DalbumContentItem.tsx7 export default function AlbumContentItem(props: IAlbumContentProps) {
8 const {item} = props;
H A DmusicContentItem.tsx7 export default function MusicContentItem(props: IMusicContentProps) {
8 const {item} = props;
/MusicFree/src/pages/searchPage/components/resultPanel/results/
H A DalbumResultItem.tsx9 export default function AlbumResultItem(props: IAlbumResultsProps) {
10 const {item: albumItem} = props;
H A DmusicSheetResultItem.tsx9 props: IMusicSheetResultItemProps,
11 const {item, pluginHash} = props;
/MusicFree/src/components/dialogs/components/base/
H A Dindex.tsx31 function Dialog(props: IDialogProps) {
32 const {children, onDismiss} = props;
124 function Title(props: IDialogTitleProps) {
125 const {children, withDivider, stringContent} = props;
152 function Content(props: IDialogContentProps) {
153 const {children, style, needScroll} = props;
189 function Actions(props: IDialogActionsProps) {
190 const {children, style, actions} = props;
228 function BottomButton(props: {
234 const {type = 'normal', text, style, onPress} = props;
/MusicFree/src/pages/topList/components/
H A DtopListBody.tsx20 (props: {route: {key: string}}) => (
21 <BoardPanelWrapper hash={props?.route?.key} />
36 renderTabBar={props => (
38 {...props}
/MusicFree/src/pages/artistDetail/components/
H A Dbody.tsx40 renderTabBar={props => (
42 {...props}
74 export function BodyContentWrapper(props: any) {
75 const tab: IArtist.ArtistMediaType = props.route.key;
/MusicFree/src/components/panels/types/searchLrc/
H A DLyricList.tsx22 export default function LyricListWrapper(props: ILyricListWrapperProps) {
23 const hash = props.route.key;
33 function LyricListImpl(props: ILyricListProps) {
34 const data = props.data;

12345