/MusicFree/src/components/base/ |
H A D | linkText.tsx | 15 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 D | textButton.tsx | 15 export default function (props: IButtonProps) { 17 props; 20 {...props} 27 props.style,
|
H A D | input.tsx | 12 export default function Input(props: IInputProps) { 13 const {fontColor, hasHorizontalPadding = true} = props; 25 {...props} 31 props?.style,
|
H A D | image.tsx | 8 export default function (props: Omit<IImageProps, 'source'>) { 9 const {uri, emptySrc} = props; 15 return <Image {...props} source={source} />;
|
H A D | tag.tsx | 12 export default function Tag(props: ITagProps) { 19 props.containerStyle, 21 <ThemeText style={[styles.tagText, props.style]} fontSize="tag"> 22 {props.tagName}
|
H A D | iconButton.tsx | 18 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 D | noPlugin.tsx | 10 export default function NoPlugin(props: IProps) { 15 {props?.notSupportType 16 ? `支持「${props.notSupportType}」功能的`
|
H A D | listItem.tsx | 51 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 D | themeText.tsx | 14 export default function ThemeText(props: IThemeTextProps) { 24 } = props; 39 <Text {...props} style={_style} allowFontScaling={false}>
|
H A D | paragraph.tsx | 7 export default function Paragraph(props: IParagraphProps) { 8 return <ThemeText style={styles.container} {...props} />;
|
H A D | switch.tsx | 21 export default function ThemeSwitch(props: ISwitchProps) { 22 const {value, onValueChange} = props; 57 props?.style,
|
H A D | horizontalSafeAreaView.tsx | 11 props: IHorizontalSafeAreaViewProps, 13 const {children, style, mode} = props;
|
H A D | verticalSafeAreaView.tsx | 11 props: IVerticalSafeAreaViewProps, 13 const {children, style, mode} = props;
|
H A D | empty.tsx | 9 export default function Empty(props: IEmptyProps) { 13 {props?.content ?? '什么都没有呀~'}
|
H A D | divider.tsx | 9 export default function Divider(props: IDividerProps) { 10 const {vertical, style} = props;
|
/MusicFree/src/lib/react-native-vdebug/src/ |
H A D | hoc.js | 5 constructor(props) { argument 6 super(props); 15 {...this.props}
|
/MusicFree/generator/ |
H A D | generate-assets.mjs | 48 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 D | albumContentItem.tsx | 7 export default function AlbumContentItem(props: IAlbumContentProps) { 8 const {item} = props;
|
H A D | musicContentItem.tsx | 7 export default function MusicContentItem(props: IMusicContentProps) { 8 const {item} = props;
|
/MusicFree/src/pages/searchPage/components/resultPanel/results/ |
H A D | albumResultItem.tsx | 9 export default function AlbumResultItem(props: IAlbumResultsProps) { 10 const {item: albumItem} = props;
|
H A D | musicSheetResultItem.tsx | 9 props: IMusicSheetResultItemProps, 11 const {item, pluginHash} = props;
|
/MusicFree/src/components/dialogs/components/base/ |
H A D | index.tsx | 31 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 D | topListBody.tsx | 20 (props: {route: {key: string}}) => ( 21 <BoardPanelWrapper hash={props?.route?.key} /> 36 renderTabBar={props => ( 38 {...props}
|
/MusicFree/src/pages/artistDetail/components/ |
H A D | body.tsx | 40 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 D | LyricList.tsx | 22 export default function LyricListWrapper(props: ILyricListWrapperProps) { 23 const hash = props.route.key; 33 function LyricListImpl(props: ILyricListProps) { 34 const data = props.data;
|