Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 59) sorted by relevance

123

/MusicFree/src/components/base/
H A Dloading.tsx8 text?: string;
15 const {showText = true, height, text, color} = props;
19 <ActivityIndicator animating color={color ?? colors.text} />
25 style={style.text}>
26 {text ?? '加载中...'}
40 text: {
H A Dbutton.tsx15 text: string;
19 const {type = 'normal', text, style, onPress} = props;
35 {text}
H A DiconTextButton.tsx25 <Icon name={icon} size={iconSizeConst.light} color={colors.text} />
26 <ThemeText style={style.text} fontSize={'content'}>
40 text: {
H A Dtoast.tsx135 style={[styles.text, {color: colors.text}]}>
182 text: {
H A DlistLoading.tsx15 color={colors.text}
H A Dinput.tsx16 const currentColor = fontColor ?? colors.text;
/MusicFree/src/constants/
H A DrepeatModeConst.ts6 text: '列表循环',
10 text: '单曲循环',
14 text: '随机播放',
/MusicFree/src/pages/musicDetail/components/content/lyric/
H A DlyricItem.tsx15 text?: string;
23 const {light, highlight, text, onLayout, index, fontSize} = props;
49 {text}
59 prev.text === curr.text &&
/MusicFree/src/pages/home/components/
H A DnavBar.tsx22 color={colors.text}
44 color={Color(colors.text).alpha(0.6).toString()}
49 style={[styles.text]}>
76 text: {
H A DActionButton.tsx35 color={iconColor ?? colors.text}
42 style={styles.text}>
61 text: {
/MusicFree/src/components/dialogs/components/
H A DsubscribePluginDialog.tsx35 color: colors.text,
66 subscribeUrl && subscribeUrl === text
71 if (subscribeUrl !== text) {
72 if (text?.trim?.()?.endsWith?.('.json')) {
75 text?.trim(),
/MusicFree/src/hooks/
H A DuseColors.ts9 text: string; property
46 textSecondary: Color(colors.text).alpha(0.7).toString(),
H A DuseTextColor.ts5 return colors.text;
/MusicFree/src/lib/react-native-vdebug/
H A Dindex.js279 onChange(text) { argument
280 const state = {commandValue: text};
281 if (text) {
283 f.toLowerCase().match(replaceReg(text)),
309 {this.state.historyFilter.map(text => {
317 if (text && text.toString) {
319 commandValue: text.toString(),
323 <Text style={{lineHeight: 25}}>{text}</Text>
/MusicFree/src/components/panels/types/
H A DsetLyricOffset.tsx59 color={colors.text}
71 color={colors.text}
83 color={colors.text}
H A DimportMusicSheet.tsx49 async onOk(text, closePanel) {
56 text,
H A DsimpleInput.tsx15 onOk: (text: string, closePanel: () => void) => void;
66 color: colors.text,
/MusicFree/src/pages/setting/settingTypes/pluginSetting/views/
H A DpluginList.tsx72 type: ['application/javascript', 'text/javascript'],
105 async onOk(text, closePanel) {
109 const result = await installPluginFromUrl(text.trim());
317 async function installPluginFromUrl(text: string): Promise<IInstallPluginResult[]> {
320 const inputUrl = text.trim();
321 if (text.endsWith('.json')) {
353 return [{ success: false, message: e?.message, pluginUrl: text }];
/MusicFree/src/pages/musicDetail/components/bottom/
H A DseekBar.tsx15 <Text style={style.text}>{timeformat(Math.max(props.time, 0))}</Text>
69 text: {
/MusicFree/src/pages/musicListEditor/components/
H A Dbottom.tsx84 ? 'text'
104 color?: 'text' | 'textSecondary';
108 const {icon, title, onPress, color = 'text'} = props;
/MusicFree/src/core/
H A Dtheme.ts14 text: '#333333',
42 text: '#fcfcfc',
206 text: '文字颜色',
/MusicFree/android/app/src/main/java/fun/upup/musicfree/lyricUtil/
H A DLyricView.kt94 text = initText ?: "" in <lambda>()
168 fun setText(text: String) { in <lambda>()
169 tv?.text = text in <lambda>()
/MusicFree/src/components/dialogs/components/base/
H A Dindex.tsx205 text={it.title}
230 text: string;
234 const {type = 'normal', text, style, onPress} = props;
250 {text}
/MusicFree/src/pages/setting/settingTypes/pluginSetting/components/
H A DpluginItem.tsx88 async onOk(text) {
90 text,
120 async onOk(text, closePanel) {
124 text,
/MusicFree/android/app/
H A Dbuild.gradle62 …ile().getParentFile().getAbsolutePath(), "android", "absolute"].execute(null, rootDir).text.trim())
63 … = new File(["node", "--print", "require.resolve('@expo/cli')"].execute(null, rootDir).text.trim())
67 …ile().getParentFile().getAbsolutePath(), "android", "absolute"].execute(null, rootDir).text.trim())
68 … = new File(["node", "--print", "require.resolve('@expo/cli')"].execute(null, rootDir).text.trim())
99 def packageJson = new JsonSlurper().parseText(inputFile.text)

123