1604393460
The library was originally based on react-native-wheel-picker , modified and expanded many functions
The android end is packaged based on WheelPicker 1.1.2 version (be careful not to manually upgrade to 1.1.3)
The ios end is packaged based on the PickerIOS that comes with RN
On the basis of the original library, the following modifications have been made:
Since both ends are native components, the performance is better. All other components are implemented on the js side with a single wheel. You can directly modify js after bug fixes to facilitate hot updates.
npm i @yz1311/react-native-wheel-picker moment --save
RN>=0.60, no need to operate due to auto linking
RN<0.60
react-native link @yz1311/react-native-wheel-picker
Add in settings.gradle
include ':react-native-wheel-picker'
project(':react-native-wheel-picker').projectDir = new File(settingsDir, '../node_modules/@yz1311/react-native-wheel-picker/android')
Add in app/build.gradle
compile project(':react-native-wheel-picker')
Modify MainApplication
import com.zyu.ReactNativeWheelPickerPackage;
......
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(), new ReactNativeWheelPickerPackage()
);
}
The library (>=0.2.0) provides a variety of Pickers, all of which are views. Compared with the direct mode of providing Modal+picker, the simple picker view is more flexible, and you can combine it any way you want.
import WheelPicker ,{CommonPicker,DateRangePicker,DatePicker,RegionPicker} from "@yz1311/react-native-wheel-picker";
WheelPicker: A single wheel is the basic control of all other pickers, based on native packaging (iOS is PickerIOS that comes with RN, and android is packaged from cn.aigestudio.wheelpicker:WheelPicker
)
CommonPicker: WheelPicker
Multi-Wheel picker component based on encapsulation, supports two modes ( parallel
no relation between wheels) and cascade
(connection between wheels). Basically all single and multi-wheel components can directly use this component or encapsulate on this component
DatePicker: CommonPicker
encapsulated date selection component, supports three modes of date/time/date+time
DateRangePicker: Based on the CommonPicker
packaged date range selection component, you can select a time range
RegionPicker: Based on the CommonPicker
packaged address selection component, it supports the selection of provinces and municipalities, encapsulates the data of the provinces and municipalities in 2019/01 , and supports custom data sources
For the properties of each component, please check index.d.ts
Quote
import WheelPicker ,{CommonPicker,DateRangePicker,DatePicker,RegionPicker} from "@yz1311/react-native-wheel-picker";
< CommonPicker
pickerData = { [ 'Liu Bei' , 'Zhang Fei' , 'Guan Yu' , 'Zhao Yun' , 'Huang Zhong' , 'Ma Chao' , 'Wei Yan' , 'Zhuge Liang' ] }
selectedValue = { [ '' ] } / >
< CommonPicker
pickerData = { [ [ 'Male' , 'Female' ] , [ '0~20 years old' , '21~40 years old' , '40~60 years old' , '60 years old and above' ] ] }
selectedValue = { [ '' ] } / >
< CommonPicker
pickerData = { {
'male' : [ 'playing games' , 'electronic products' , 'watching a ball' ] ,
'female' : [ 'buy clothes' , 'buy shoes' , 'beauty' , 'selfie' ]
} }
selectedValue = { [ 'Male' , 'Electronic Products' ] } / >
Note: Regardless of the mode, the data returned by the callback is a date object, and the specific value needs to be converted by yourself
year:
Select year
month:
Select year and month
date:
Select the year, month and day
time:
Choose time
datetime:
Select the year, month, day, hour and minute (minDate and maxDate cannot affect the hour and minute, but only the date. For example, if minDate is set to 2010-01-01 08:00:00, you can still choose the time period from 00:00 to 23:59 that day )
<DatePicker
mode={'date'}
//date值可以不填,默认是当前时间
date={new Date()}
onPickerConfirm={(value)=>{
//不管mode的值是哪一种, value均是一个Date对象, 需要转换为所需的值
//譬如: 如果mode=='year', 则可以通过`moment(value).year()`
}}
/>
The library is modeled on the time period selection control of Alipay’s bill (Alipay: My-Bill)
Start time selection range: the first 30 years to the next 10 years of the current time (consistent with the range of DatePicker)
End time range: selected start time ~ 10 years after the current time, that is, you must select the start time before you can select the end time
The clear button will set the start time to the current time and the end time to be empty
If you have selected the start and end time, and then select the start time to be greater than the end time, the end time will be cleared
The default value can be set through the two properties of startDate and endDate (only the default value can be set, and the value cannot be updated from the outside)
By default, only the start and end time are selected at the same time to return a value. If any one of them is not selected, the returned startDate and endDate are both null
< DateRangePicker
// Error Information (optional)
errorMessage = { the this . State . ErrorMessage }
onPickerConfirm = { ( startDate , endDate ) => {
// NOTE: startDate Date object and endDate are, but are likely to null
// if If you need to select the start and end time at the same time, you can control the subsequent operations by judging whether these two values are empty (for example, do not let the user close Modal)
}
/ >
Data item from the Administrative-divisions-of-China the PCA-code.json ,
The data source is already included in the project, and the data source can also be data={require('pca-code.json')}
customized in a way, but it must conform to the format
If you need four-level, five-level and other linkage modes, you can directly rewrite it according to RegionPicker (the amount of data is too large, and it is not suitable to be built into the library)
< RegionPicker
//Mode, the three values
of'p ' |'pc' |'pca' represent the three modes of province, province, city, province and city respectively. The default is pca mode = "pca"
onPickerConfirm = { ( names , codes ) => {
//names: ["Shanghai", "Municipal District", "Huangpu District"], return arrays of different lengths according to different modes
//codes: ["31", "3101", "310101"] , Return arrays of different lengths according to different modes
} }
selectedValue = { [ '' ] } / >
In most cases, Picker is not only used as a view, but as a pop-up window at the bottom. Here is the code for react-native-modal as an example:
<Modal
style={{flex:1, justifyContent:'flex-end',margin: 0}}
isVisible={selectDateVisible}
onBackdropPress={()=>{
setSelectDateVisible(false);
}}
onBackButtonPress={()=>{
setSelectDateVisible(false);
}}
>
All picker // default display is the header
< the DatePicker
pickerTitle = 'appointment'
DATE = { ruleForm . AppointmentTime }
MODE = { 'datetime' }
onPickerCancel = { ( ) => {
setSelectDateVisible ( to false ) ;
} }
onPickerConfirm = { date => {
setRuleForm ( prevState => ( {
... prevState ,
appointmentTime : date
} ) ) ;
setSelectDateVisible ( false ) ;
} }
//In most cases, you don’t need to pay attention to the data when the date changes. The following method can delete
onDateChange = { ( ) => { } }
/ >
< / Modal >
Author: yz1311
Source Code: https://github.com/yz1311/react-native-wheel-picker
#react #react-native #mobile-apps
1598839687
If you are undertaking a mobile app development for your start-up or enterprise, you are likely wondering whether to use React Native. As a popular development framework, React Native helps you to develop near-native mobile apps. However, you are probably also wondering how close you can get to a native app by using React Native. How native is React Native?
In the article, we discuss the similarities between native mobile development and development using React Native. We also touch upon where they differ and how to bridge the gaps. Read on.
Let’s briefly set the context first. We will briefly touch upon what React Native is and how it differs from earlier hybrid frameworks.
React Native is a popular JavaScript framework that Facebook has created. You can use this open-source framework to code natively rendering Android and iOS mobile apps. You can use it to develop web apps too.
Facebook has developed React Native based on React, its JavaScript library. The first release of React Native came in March 2015. At the time of writing this article, the latest stable release of React Native is 0.62.0, and it was released in March 2020.
Although relatively new, React Native has acquired a high degree of popularity. The “Stack Overflow Developer Survey 2019” report identifies it as the 8th most loved framework. Facebook, Walmart, and Bloomberg are some of the top companies that use React Native.
The popularity of React Native comes from its advantages. Some of its advantages are as follows:
Are you wondering whether React Native is just another of those hybrid frameworks like Ionic or Cordova? It’s not! React Native is fundamentally different from these earlier hybrid frameworks.
React Native is very close to native. Consider the following aspects as described on the React Native website:
Due to these factors, React Native offers many more advantages compared to those earlier hybrid frameworks. We now review them.
#android app #frontend #ios app #mobile app development #benefits of react native #is react native good for mobile app development #native vs #pros and cons of react native #react mobile development #react native development #react native experience #react native framework #react native ios vs android #react native pros and cons #react native vs android #react native vs native #react native vs native performance #react vs native #why react native #why use react native
1593420654
Have you ever thought of having your own app that runs smoothly over multiple platforms?
React Native is an open-source cross-platform mobile application framework which is a great option to create mobile apps for both Android and iOS. Hire Dedicated React Native Developer from top React Native development company, HourlyDeveloper.io to design a spectacular React Native application for your business.
Consult with experts:- https://bit.ly/2A8L4vz
#hire dedicated react native developer #react native development company #react native development services #react native development #react native developer #react native
1616494982
Being one of the emerging frameworks for app development the need to develop react native apps has increased over the years.
Looking for a react native developer?
Worry not! WebClues infotech offers services to Hire React Native Developers for your app development needs. We at WebClues Infotech offer a wide range of Web & Mobile App Development services based o your business or Startup requirement for Android and iOS apps.
WebClues Infotech also has a flexible method of cost calculation for hiring react native developers such as Hourly, Weekly, or Project Basis.
Want to get your app idea into reality with a react native framework?
Get in touch with us.
Hire React Native Developer Now: https://www.webcluesinfotech.com/hire-react-native-app-developer/
For inquiry: https://www.webcluesinfotech.com/contact-us/
Email: sales@webcluesinfotech.com
#hire react native developers #hire dedicated react native developers #hire react native developer #hiring a react native developer #hire freelance react native developers #hire react native developers in 1 hour
1626928787
Want to develop app using React Native? Here are the tips that will help to reduce the cost of react native app development for you.
Cost is a major factor in helping entrepreneurs take decisions about investing in developing an app and the decision to hire react native app developers in USA can prove to be fruitful in the long run. Using react native for app development ensures a wide range of benefits to your business. Understanding your business and working on the aspects to strengthen business processes through a cost-efficient mobile app will be the key to success.
#best react native development companies from the us #top react native app development companies in usa #cost of hiring a react native developer in usa #top-notch react native developer in usa #best react native developers usa #react native
1623299374
React Native allows developers to develop mobile apps that have compatibility with Android, iOS & other operating systems. Due to the features like Native-like functionality and single code reusability and the access of various frameworks in the market, React Native has excelled as the most suitable framework for cross-platform mobile app development.
Why Do Businesses Prefer React Native App Development?
React Native is integrated with JS library that works as the fundamental for developing the app UI. Most businesses choose for developing React Native apps just due to their cross-platform & open-source features. A few further reasons why entrepreneurs & developers choose React Native app development include:
• Lowered Expedition Time
• Simple UI
• Cross-Platform and Code Sharing
• Lesser Workforce and Resources
• Community Assistance
• In-Built Elements and Reusable Codes
• Hot Reload
• JavaScript as Programming Language
• Easy to Execute Updates
Factors That Decide Cost of React Native App Development
If you are an entrepreneur or start-up and looking for cost-effective app development, React Native is one of the ideal options available out there.
• App’s UI/UX Design
• User Authorization
• App Complexity and Functionality
• App Development Team
• App Maintenance
• App Add-ons
• App Distribution
• Location of Development Company
• App Category
React Native cost depends widely on the complexity of a project or the app requirements. The price may also vary based on business requirements. React Native app development per hour can cost from $20 and $30 per hour in India. It can vary as per different locations.
Is React Native a good choice for mobile apps development?
Yes, React Native is the best choice for mobile app development as React apps are faster to develop and it offers better quality than hybrid apps. Additionally, React Native is a mature cross-platform framework.
Best React Native App Development Agency
AppClues Infotech is a leading React Native App Development Company in USA that build robust & innovative mobile app as per your specific business needs. They have a dedicated team of designers and programmers help to make a perfect mobile app.
If you have any mobile app development project in mind get in touch with AppClues Infotech and get the best solution for your business.
#react native app development cost #react native development company #best react native development company in usa #hire react native developers #hire dedicated react native developers & programmers #hire a react native development company