Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
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
[RNMobile] Add mobile Spacer component #17896
[RNMobile] Add mobile Spacer component #17896
Changes from 9 commits
5f3a400
25832f0
335154d
d137d38
8d37161
ae5715f
a1cf07b
f0b3b28
a807c31
ca3b8d4
a390d88
90fe027
a1d9a10
833cc76
103493e
74d020a
8c127b9
84ade89
1debc8c
4a897fd
7ee822e
014cd20
2d643c0
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've noticed that if
thumbTintColor
on iOS is set to white color it losing the shadow (probably the shadow color is based on the main color). That's why I've decided to use the custom colorCurrently we are using the
Slider
from react-native, which will be deprecated soon and we'll have to use theSlider
from community library. Need to check if the bug doesn't exist in that library.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've tested this using slider from a community library and it seems like a bug which affects ios version ~12.
Tested on:
What's more it's a bug within pure ios, since I've tested it on clear swift project.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What I wanted to achieve here is to make the parent component (
Cell
) not accessible, since I want to focusSlider
and have alsoTextInput
accessible as well.Wdyt about having there only one component when screen reader is enabled?
Both platforms are reading the slider value in percents, e.g.
100
px is is read as17 percents
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@etoledom Could you please look at it? I would like to know if something is wrong there. Thanks!