Socket
Socket
Sign inDemoInstall

react-native-easy-loading-view

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-easy-loading-view

A react native loading view


Version published
Weekly downloads
3
decreased by-66.67%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

react-native-easy-loading-view

npm downloads

Preview

Getting started

$ npm install react-native-easy-loading-view --save

Example

Check example in the folder.

Usage

edit your project root view,like this(detail please see example):

import Loading from 'react-native-easy-loading-view';
render() {
return (
<View style={[{flex:1}]}>
<App/>
<Loading
ref={(view)=>{Loading.loadingDidCreate(view)}} // 必须调用

top={86} // 如果需要在loading或者hud的时候可以点击导航上面的按钮,建议根据自己导航栏具体高度来设置。如果不需要点击可以不设置
offsetY={-150} // 默认loading 和 hud 会在 去掉top之后高度的中间,如果觉得位置不太合适,可以通着offsetY来调整

// loadingDefaultText={''} // loading动画的文字
// loadingTextStyle={{ fontSize : 16, color: 'red' }} // loading动画文字的样式
// loadingImage={require('./screen/loading_2.gif')} // loading动画是显示的gif
// loadingImageStyle={{ width : 100, height : 100 }} // gif 图片样式

// hudStyle={{ width : 150, height : 150 }} // hud的全局样式
// hudBackgroundColor={'red'} // hud全局背景色
// hudDefaultText={'努力加载中...'} // hud默认全局文字
// hudTextStyle={{ fontSize : 16, color: 'red' }} // 文字样式
// activityIndicatorSize={'small'} // hud上面的圈圈 small or large
// activityIndicatorColor={'red'} // hud上面圈圈的颜色
// hudCustomImage={require('./screen/loading_2.gif')} // 自定义hud上面的圈圈显示,可以把转的圈圈替换为gif
// hudImageStyle={{ width : 50, height : 50 }} // 自定义hud图片的样式
/>
</View>
);
}

use loading(show or dismiss)

import Loading from 'react-native-easy-loading-view';

Loading.showHud(); //显示hud
Loading.showLoading(); //显示loading

Loading.dismiss(); // 消失

Properties

PropDefaultTypeDescription
top0numberDistance from top of container.
bottom0numberDistance from bottom of container.
offsetY0numberloading or hud y offset.
loadingDefaultTextstringloading view default display text.
loadingTextStyle{...}styleloading view display text style.
loadingImageimageloading view display gif image.
loadingImageStyle{...}styleloading view display image style
hudDefaultTextstringhud view default display text.
hudTextStyle{...}stylehud view display text style.
hudStyle{...}stylehud view style.
hudBackgroundColor'transparent'colorloading view display image style
hudCustomImageimagehud view custom image.
hudImageStyle{...}stylehud custom image style
activityIndicatorSize'small'stringhud view default ActivityIndicator size.
activityIndicatorColorstylehud view default ActivityIndicator color

Methods

showHud(text, extraTop, bkColor)

Parameters:

NameTypedefaultDescriptionoptional
textstringhudDefaultTexthud view display textYES
extraTopnumber0hud view extra offset yYES
bkColorstring''hud view backgroundColorYES
showLoading(text, extraTop, bkColor)

Parameters:

NameTypedefaultDescriptionoptional
textstringloadingDefaultTextloading view display textYES
extraTopnumber0loading view extra offset yYES
bkColorstring''loading view backgroundColorYES
dismiss()

Keywords

FAQs

Last updated on 29 Apr 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc