1,378 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
60
views
input boxes in table header not showing contents
I have a tall html table. When it prints on two pages, the thead is repeated, like I expect. The problem is that my thead contains a text input field, and this is not repeated. Shouldn't the text ...
1
vote
0
answers
69
views
TextInput padding/scroll state persists after navigation or note change (dynamic padding not resetting)
I’m building a note-taking app in React Native (see code below) where each note’s content is displayed in a multiline, non-editable TextInput. The paddingTop of the TextInput is dynamically set based ...
0
votes
0
answers
16
views
Trying to scroll through text in a TextInput, but when scrolled it is sticky and snaps back to where scrolled from
I am trying to scroll through a React native TextInput that's multiline, but when I expect it to just scroll through the text without keyboard appearing, the keyboard appears, scroll is sticky and ...
0
votes
0
answers
42
views
React Native: How to resolve TextInput maxLength property error on Web platform?
The TextInput maxLength property is not working properly on the web platform. The component allows you to type as many characters as you want and only reduces the text to the correct size after it is ...
1
vote
0
answers
32
views
Android few cursive fonts are being cropped on left react native
I have one font which is cursive. This font is visible outside of my TextInput and also outSide of text component in react native IOS but in Android if letter is curved on left it is being cropped ...
0
votes
0
answers
48
views
React Native: TextInput on IOS does not go to next TextInput when pressing "next" keyboard button
I have three text input forms:
<TextInput
ref={monthRef}
style={styles.dateInput}
value={month || ''}
placeholderTextColor="#999"
placeholder="MM&...
0
votes
0
answers
163
views
React native's text input duplicates input characters
I'm facing a problem with React Native TextInput.
I want to make a custom password input component because RN doesn't have good built-in tools and if I use the secureTextEntry attribute it just makes ...
0
votes
3
answers
171
views
React-native TextInput display end part of text instead of ... in ios
I've taken one example here which is similar to my requirement. So suppose I have two textinput, while typing on textinput 2 some part of that is appending on textinput 1's value also. so in Android ...
1
vote
1
answer
55
views
Style the decimal part differently from the whole number
I’m working on a React Native TextInput where I want to style the decimal part differently from the whole number. I’ve set up a basic structure, but I'm facing challenges in properly styling the ...
0
votes
0
answers
103
views
When entering the TextInput an icon appears
I have the following problem. When I click in the input field, a small symbol appears at the bottom of the edge (see image). What is that?
This little symbol only appears as long as I'm in the input ...
0
votes
0
answers
204
views
TextInputControl SendText To webOS LG TV using ConnectSDK in Android
I am trying to send typed text from Android mobile to the search bar in LG TV webOS utilizing the ConnectSDK API.
This is the API that LG posts to use to communicate with their TV for mobile ...
1
vote
1
answer
42
views
react-native textInput onChangeText issue
import React, {useRef, useState} from 'react';
import {KeyboardAvoidingView, Platform, ScrollView, TextInput} from 'react-native';
import {SafeAreaView} from "react-native-safe-area-context";...
1
vote
0
answers
108
views
React Hook Form Controller in React Native: Unable to Enter Decimal Values in Text Input
I am building a React Native app using react-hook-form and zod for form handling and validation. One of my fields, sellingPrice, is supposed to accept decimal values (e.g., 123.45). However, I am ...
0
votes
2
answers
95
views
Can we add an image inside a textbox without the use of a stack in swiftui?
I am trying to add an image into my textinput in swiftui without the use of a zstack because this cause the whole view to bug, this is the expected result , is there a way to add them without the use ...
0
votes
0
answers
52
views
"How to implement a dynamic subtask input field with icons that change and subtasks list below?"
I'm trying to implement a dynamic subtask feature similar to what I've attached in the images below. Here's what I'm aiming for:
The input field has a + icon by default.
When the user starts typing in ...