Need to show two label in Picker - react-native

I want to show two label values in one picker component is it possible to display I have attached a screen shot, please let me know if it is possible.

I recommend you to use this library : react-native-dropdown-picker
Installation
npm install react-native-dropdown-picker
here's the documentation
i also created a snack you can check it here

Related

Create a custom date picker with react native and expo

I would like to create a box to select the date as in the attached photo.
What do you recommend to create something similar in react native with expo?
I tried using MUI's Mobile DatePicker API, but it doesn't work, errors occur.
Update:
I created this box to select the date, but when I go to press it gives me an error.
The error is the following:
https://www.npmjs.com/package/#react-native-community/datetimepicker
Works with Expo. Static version set at 3.x.x (something version 3). So you won't have the full functionality that is described on their docs, but you'll have enough.
expo install #react-native-community/datetimepicker
instead of npm to ensure you get the compatible version.
This library can be a bit difficult to work with. The main suggestion I have for you is to create a custom component on your own that looks like your design. Then wrap it with a TouchableOpacity and onPress set the DateTimePicker to show its modal. Grab the value you need from the onChange result, and pass it to your local state. Dont try anything fancy after that because as I mentioned earlier, the library is difficult to work with and really fights hard against any customization. It works well though and will certainly solve your problem.

react-native-dropdown-picker don't show the icon

I'm beginner in React Native and I need some help! :)
I'm using react-native-dropdown-picker on my project to show a list of options. The list is working, but dosen't showing the icon that indicate tha it's a list.
There is the image like I see in my simulator:
The exemple
Can some one helps me?
Tks
You need to install react-native-vector-icons and react-native link react-native-vector-icons, to render its icons.

How to make range-slider in react-native

*I want to use range-slider to compare two values.
I found a normal slider. I couldn't find good an NPM package for this*
This is what I want exactly:
npm install --save react-native-range-slider
Link :
range-slider
Unfortunately Android doesn't support this :( any suggestion about this ?
use this https://github.com/ptomasroos/react-native-multi-slider it has . Options to customize track, touch area and provide customer markers and callbacks for touch events.

Floating toolbar component for ReactNative/ReactJS?

I'm figuring how to implement a floating toolbar like this.
It stays on top of the screen, but may become invisible/visible as user scrolls the screen. Is there any React Native/ReactJS component for this?
With reference to the image shared .
I think you are looking for a component to display tooltip.
You can use react-native-tooltip.
To install run below command
npm install react-native-tooltip --save
For complete implimentation you can refer link
Hope it helps you

React native DatePickerAndroid clear option

I'm using the native DatePickerAndroid for editing a date field in my react-native app.
I would like to know if there is any support for adding a 'clear' button to the native date picker that will close the datepicker and return an empty date - in order to be able to clear the date in the input field.
I've attached a screenshot of the native android date picker opened from a regular <input/> with type date in chrome. As you can see there is a 'clear' button - exactly what I'm looking for!
Actually this question was previously answered by ufxmeng, but his answer was lately deleted (I don't know why...).
His solution was to create a custom AndroidDatePicker module, mostly copied from the original DatePicker Module created by React Native, with slight changes for adding a CLEAR button.
He put together a github repo holding all files that need to be added/changed to accomplish this. Basically the changes you'll need are here and here.
But note that the original CLEAR button added in that repo doesn't fully match the needs pointed out in my question (see this issue).
So I've changed some of the code to make it work the way I expected. You could see the changes I made in this pull request
It works great for me!
In case anyone else needs this, I forked the original repo of ufxmeng and added Clear button functionality for TimePicker as well:
https://github.com/sladek-jan/CustomDatePicker