import React, { useState } from 'react' import { View, Button } from 'react-native' import DatePicker from 'react-native-neat-date-picker' const App = => { const [showDatePicker, setShowDatePicker] = useState(false) const openDatePicker = => { setShowDatePicker(true) } const onCancel = => { // You should close the modal in here setShowDatePicker(false) } const onConfirm = ( date ) => { // You should close the modal in here setShowDatePicker(false) // The parameter 'date' is a Date object so ...
import PhotoEditor from 'react-native-photo-editor' PhotoEditor.Edit ( { path: RNFS.DocumentDirectoryPath + "/photo.jpg" }); Purpose of this library is to edit photos which are within app sandbox, we recommend to move captured image to app sandbox then using RNFS share image path with library for the edit. Example: If we capture image through cameraRoll then we should first move image to app sandbox using RNFS then share app storage path with the editor.
Where to Find Useful Advice
We use React Native on the Frontend and Rails/Node on the Backend side. Experience with it has been great since developing apps in React Native is faster than native development. You have a larger hiring pool since React is very similar to React Native. You can easily onboard a React developer to use React Native effectively in a couple weeks.