1605311460
import { ScrollView } from 'react-native';
import { HPageViewHoc, TabView } from 'react-native-head-tab-view'
const HScrollView = HPageViewHoc(ScrollView)
_renderScene = (sceneProps: { item: string, index: number }) => {
return <HScrollView {...sceneProps}>
<View style={{ height: 800, backgroundColor: 'red' }} />
<View style={{ height: 800, backgroundColor: 'green' }} />
<View style={{ height: 800, backgroundColor: 'blue' }} />
</HScrollView>
}
render() {
return (
<View style={{ flex: 1, backgroundColor: '#FFF' }}>
<TabView
tabs={['tab1','tab2','tab3']}
renderScene={this._renderScene}
makeHeaderHeight={() => { return 180 }}
renderScrollHeader={()=><View style={{height:180,backgroundColor:'red'}}/>}
onChangeTab={this.onChangeTab}
/>
</View>
)
}
More examples:Example
cd Example
yarn or npm install
//run Android
react-native run-android
//run iOS
cd ios
pod install
cd ../
react-native run-ios
yarn add react-native-head-tab-view react-native-gesture-handler @react-native-community/viewpager
or
npm install react-native-head-tab-view react-native-gesture-handler @react-native-community/viewpager --save
https://github.com/react-native-community/react-native-viewpager#Linking
Some versions of @react-native-community/viewpager
1.x2.x3.xiOS supportiOS supportAndroid supportAndroid supportAndroidX support
Common Props
HPageViewHoc Props (HOC props)
isRefreshing
(boolean)Whether the scene is refreshing
onStartRefresh
(() => void)If provided, a standard RefreshControl will be added for “Pull to Refresh” functionality.
Make sure to also set the isRefreshing prop correctly.
renderRefreshControl
(() => React.ReactElement)A custom RefreshControl for scene
refreshHeight
(number)If this height is reached, a refresh event will be triggered (onStartRefresh)
it defaults to 100
overflowPull
(number)It’s the distance beyond the refreshHeight, the distance to continue the displacement, when the pull is long enough,
it defaults to 50.
TabView Props - (extends Common Props)
renderScene
(required
) (renderScene :(info: TabViewItemInfo) => React.ReactElement | null | undefined)Takes an item from tabs and render the scene of the TAB item When renderScrollHeader is assigned, pass info to the component wrapped by HPageViewHoc
Example:
<TabView
renderScene={(sceneProps)=>{
const {item} = sceneProps
if (item == 'ScrollView') {
return <Page1 {...sceneProps} />
} else if (item == 'FlatList') {
return <Page2 {...sceneProps} />
} else if (item == 'SectionList') {
return <Page3 {...sceneProps} />
}
return null;
}}
/>
renderScrollHeader
(React.ComponentType | React.ReactElement | null)render the collapsible header
<TabView
makeHeaderHeight={() => { return 180 }}
/>
frozeTop
(number)The height at which the top area of the Tabview is frozen
<TabView
frozeTop={50}
/>
headerRespond
(boolean) 【This property has been deprecated,By default, the header responds to events.】Collapsible headers can respond to an event it defaults to false
<TabView
headerRespond={true}
/>
makeHeaderHeight
The height of collapsible header
renderScrollHeader={()=><View style={{height:180,backgroundColor:'red'}}/>}
renderHeader
(React.ComponentType | React.ReactElement | null)render the header of the Tabview
renderFooter
(React.ComponentType | React.ReactElement | null)render the footer of the Tabview
initialPage
(number)The sequence number of the initial scene. it defaults to 0
preInitSceneNum
(number)Number of pre-loaded pages
it defaults to 0
renderTabBar
(React.ComponentType | React.ReactElement | null)Render the custom tabbar
onChangeTab
((value: ChangeTabProperties): void)This method is called when the scene is switched
<TabView
onChangeTab={({from,curIndex}) => { console.log('from:'+from+'-to:'+curIndex) }}
/>
onScroll
((value: number): void)Horizontal scrolling invokes this method
value
: Progress relative to total length
locked
(boolean)Whether horizontal sliding is allowed.
it defaults to false
scrollEnabled
(boolean)Whether to allow the scene to slide vertically
tabbarStyle
(StyleProp)The style of the Tabbar
extraData
(any)A marker property for telling the tabview to re-render (since it implements PureComponent).
stick it here and treat it immutably.
isRefreshing
(boolean)Whether the TabView is refreshing
onStartRefresh
(() => void)If provided, a standard RefreshControl will be added for “Pull to Refresh” functionality.
Make sure to also set the isRefreshing prop correctly.
renderRefreshControl
(() => React.ReactElement)A custom RefreshControl
refreshHeight
(number)If this height is reached, a refresh event will be triggered (onStartRefresh)
bounces
(boolean)When true, the scroll view bounces when it reaches the end of the content if it slides the tabs horizontally
Tabbar Props - (extends Common Props)
style
(StyleProp)The style of the tabbar
underLineHidden
(boolean)Whether the underline is displayed
it defaults to false
underlineStyle
(StyleProp)The style of the underlined container
lineStyle
(StyleProp)The style of the underline
tabItemStyle
(StyleProp)The style of the tab item
renderTabItem
(React.ComponentType | React.ReactElement | null)Takes an item from data and renders it
renderTabItemButton
(React.ComponentType | React.ReactElement | null)Takes an item from data and renders it to the TAB Item button
scrollValue
(Animated.Value)Progress relative to total length
renderLeftView
(React.ComponentType | React.ReactElement | null)Render the view to the left of the Tabbar
renderRightView
(React.ComponentType | React.ReactElement | null)Render the view to the right of the Tabbar
Author: zyslife
Source Code: https://github.com/zyslife/react-native-head-tab-view
#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
1621573085
Expand your user base by using react-native apps developed by our expert team for various platforms like Android, Android TV, iOS, macOS, tvOS, the Web, Windows, and UWP.
We help businesses to scale up the process and achieve greater performance by providing the best react native app development services. Our skilled and experienced team’s apps have delivered all the expected results for our clients across the world.
To achieve growth for your business, hire react native app developers in India. You can count on us for all the technical services and support.
#react native app development company india #react native app developers india #hire react native developers india #react native app development company #react native app developers #hire react native developers
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