mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-07-06 15:12:08 +08:00
修正提示
This commit is contained in:
@ -15,7 +15,7 @@ interface RuleInputType {
|
|||||||
}
|
}
|
||||||
const RuleInput = forwardRef<RuleInputType, {}>((props, ref) => {
|
const RuleInput = forwardRef<RuleInputType, {}>((props, ref) => {
|
||||||
const theme = useTheme()
|
const theme = useTheme()
|
||||||
const t = useI18n()
|
// const t = useI18n()
|
||||||
const [text, setText] = useState('')
|
const [text, setText] = useState('')
|
||||||
const inputRef = useRef<InputType>(null)
|
const inputRef = useRef<InputType>(null)
|
||||||
const [height, setHeight] = useState(100)
|
const [height, setHeight] = useState(100)
|
||||||
@ -40,7 +40,6 @@ const RuleInput = forwardRef<RuleInputType, {}>((props, ref) => {
|
|||||||
<View style={styles.inputContent} onLayout={handleLayout}>
|
<View style={styles.inputContent} onLayout={handleLayout}>
|
||||||
<Input
|
<Input
|
||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
placeholder={t('songlist_open_input_placeholder')}
|
|
||||||
value={text}
|
value={text}
|
||||||
onChangeText={setText}
|
onChangeText={setText}
|
||||||
multiline
|
multiline
|
||||||
|
Reference in New Issue
Block a user