We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-enabling a disabled Stepper component hides number text
Steps to reproduce the behavior:
When the stepper component is re-enabled the number Text is shown
export default function Example({ route, navigation }) { const [stepperValue, onChangeStepperValue] = useState(0) const [isStepperDisabled, onChangeIsStepperDisabled] = useState(false) return ( <View flex center marginH-20> <Card paddingV-30 paddingH-30> <View row spread marginB-10> <Text text60>Switch:</Text> <Switch onValueChange={onChangeIsStepperDisabled} value={isStepperDisabled} /> </View> <View row spread marginB-20 paddingL-20> <Text text70>Stepper: </Text> <Stepper minValue={0} maxValue={60} disabled={isStepperDisabled} onValueChange={onChangeStepperValue} value={stepperValue} /> </View> </Card> </View> ) }
Only tested in the Expo Go application environment
The text was updated successfully, but these errors were encountered:
@steven-haddix Hi. I couldn't reproduce the issue on Android emulator. Is it only reproduced on Expo or on a real device?
Sorry, something went wrong.
Closing due to inactivity
Inbal-Tish
No branches or pull requests
Describe the bug
Re-enabling a disabled Stepper component hides number text
To Reproduce
Steps to reproduce the behavior:
Expected behavior
When the stepper component is re-enabled the number Text is shown
Code snippet
Screenshots
Device (please complete the following information)
Additional context
Only tested in the Expo Go application environment
The text was updated successfully, but these errors were encountered: