当前位置: 首页 > 软件库 > 程序开发 > UI组件库 >

react-native-looped-carousel

环形传送
授权协议 MIT
开发语言 JavaScript
所属分类 程序开发、 UI组件库
软件类型 开源软件
地区 不详
投 递 者 姬存
操作系统 iOS
开源组织
适用人群 未知
 软件概览

react-native-looped-carousel  是基于 React Native 的环形传送。

示例代码:

'use strict';var React = require('react-native');var Carousel = require('react-native-looped-carousel');var Dimensions = require('Dimensions');var {width, height} = Dimensions.get('window');var {
  AppRegistry,
  StyleSheet,  Text,
  View
} = React;var carouselTest = React.createClass({  render: function() {    return (      <Carousel delay={500}>
          <View style={{backgroundColor:'#BADA55',width:width,height:height}}/>
          <View style={{backgroundColor:'red',width:width,height:height}}/>
          <View style={{backgroundColor:'blue',width:width,height:height}}/>
      </Carousel>
    );
  }
});

AppRegistry.registerComponent('carouselTest', () => carouselTest);
  • 摘自:《React-Native学习指南》 本指南汇集React-Native各类学习资源,给大家提供便利。指南正在不断的更新,大家有好的资源欢迎Pull Requests! 同时还有Awesome React-Native系列 地址:https://github.com/jondot/awesome-react-native 目录 教程 React Native React.js ES6 系列教

  • React-Native 集成到现有项目实践 Xcode,Ios 需要安装过React-Native相关环境和cocoa pods。 准备工作: React Native 借助 Node.js,即 JavaScript 运行时来创建 JavaScript 代码。如果你已经安装了 Node.js,那就可以上手了。 首先,使用 Homebrew 官网提供的指引安装 Homebrew,然后在终端执行以下

  • react native 的成功离不开优秀的第三方组件,以下是我见过的一些优秀或者有用的RN第三方组件 按钮 APSL/react-native-button 导航 react-native-simple-router react-native-scrollable-tab-view react-native-router-flux react-native-router-redux react-

  • react native 的成功离不开优秀的第三方组件,以下是我见过的一些优秀或者有用的RN第三方组件 按钮 APSL/react-native-button 导航 react-native-simple-router react-native-scrollable-tab-view react-native-router-flux react-native-router-redux react-

  • react-native 三方插件,react native 的成功离不开优秀的第三方组件,以下是我见过的一些优秀或者有用的RN第三方组件。 按钮 APSL/react-native-button 导航 react-native-simple-router react-native-scrollable-tab-view react-native-router-flux react-native-

 相关资料
  • react-native-carousel 是一个简单的 React Native 轮播控件。 示例代码 var Carousel = require('react-native-carousel');var ExampleProject = React.createClass({  render() {       return (              <Carousel width={3

  • 问题内容: 我通过世博会创建了该应用程序。我通过应用程序加载程序上传了ipa,但下面的消息被拒绝了。问题是什么? 该捆绑软件无效-/Payload/ExpoKitApp.app/FacebookSDKStrings.bundle的Info.plist文件丢失或无法读取。 无效的捆绑软件-“ /Payload/ExpoKitApp.app/FacebookSDKStrings.bundle”中的捆绑

  • 本文向大家介绍react-native 启动React Native Packager,包括了react-native 启动React Native Packager的使用技巧和注意事项,需要的朋友参考一下 示例 在最新版本的React Native上,无需运行打包程序。它将自动运行。 默认情况下,这将在端口8081上启动服务器。要指定服务器所在的端口            

  • 百度移动统计SDK支持使用react native框架的H5页面统计,封装好的插件已经在github上开源,相关用法具体请参考:https://github.com/BaiduMobileAnalysis/baidumobstat-react-native。

  • The React Native environment has a lot of little quirks, so this documentation is aimed at helping smooth those over. Please feel free to create issues on GitHub for recommendations and additions to t

  • React Native 可以基于目前大热的开源JavaScript库React.js来开发iOS和Android原生App。而且React Native已经用于生产环境——Facebook Groups iOS 应用就是基于它开发的。 React Native的原理是在JavaScript中用React抽象操作系统原生的UI组件,代替DOM元素来渲染,比如以<View>取代<div>,以<Ima