import React, { useMemo, memo, useState, useEffect } from 'react' import { StyleSheet, View, Text, TouchableOpacity } from 'react-native' import Section from './components/Section' // import Button from './components/Button' import { useTranslation } from '@/plugins/i18n' import { useGetter, useDispatch } from '@/store' import { openUrl } from '@/utils/tools' import { showPactModal } from '@/navigation' const qqGroupUrl = 'mqqopensdkapi://bizAgent/qm/qr?url=http%3A%2F%2Fqm.qq.com%2Fcgi-bin%2Fqm%2Fqr%3Ffrom%3Dapp%26p%3Dandroid%26jump_from%3Dwebapi%26k%3Du1zyxek8roQAwic44nOkBXtG9CfbAxFw' const qqGroupWebUrl = 'https://qm.qq.com/cgi-bin/qm/qr?k=jRZkyFSZ4FmUuTHA3P_RAXbbUO_Rrn5e&jump_from=webapi' export default memo(() => { const theme = useGetter('common', 'theme') const { t } = useTranslation() const openHomePage = () => { openUrl('https://github.com/lyswhut/lx-music-mobile#readme') } const openNetdiskPage = () => { openUrl('https://www.lanzoui.com/b0bf2cfa/') } const openFAQPage = () => { openUrl('https://github.com/lyswhut/lx-music-mobile/blob/master/FAQ.md') } // const openIssuesPage = () => { // openUrl('https://github.com/lyswhut/lx-music-mobile/issues') // } const openPactModal = () => { showPactModal() } const openPartPage = () => { openUrl('https://github.com/lyswhut/lx-music-mobile#%E9%A1%B9%E7%9B%AE%E5%8D%8F%E8%AE%AE') } const goToQQQroup = () => { openUrl(qqGroupUrl).catch(() => { openUrl(qqGroupWebUrl) }) } const textStyle = StyleSheet.compose(styles.text, { color: theme.normal, }) const textLinkStyle = StyleSheet.compose(styles.text, { textDecorationLine: 'underline', color: theme.secondary, fontSize: 14, }) return (
本软件完全免费,代码已开源,开源地址: https://github.com/lyswhut/lx-music-mobile 最新版网盘下载地址: 网盘地址(密码:glqw) 软件的常见问题可转至: 常见问题 本软件没有客服,但我们整理了一些常见的使用问题,仔细 仔细 仔细 地阅读常见问题后, 仍有问题可加企鹅群 830125506 反馈。 注意:为免满人,无事勿加,入群先看群公告 由于软件开发的初衷仅是为了对新技术的学习与研究,因此软件直至停止维护都将会一直保持纯净。 你已签署本软件的 许可协议 ,协议的在线版本在 这里 By: 落雪无痕
) }) const styles = StyleSheet.create({ part: { marginLeft: 15, marginRight: 15, marginBottom: 10, flexDirection: 'row', flexWrap: 'wrap', }, text: { fontSize: 13, textAlignVertical: 'bottom', }, btn: { flexDirection: 'row', }, })