如何处理zIndex?
我试图从scrollview中指定最大的数字,但它仍然在底部(

没有ScrollView它看起来像这样,但我需要向上滚动到图像.

谢谢
我需要里面的文件artistPage.js来引用TabNavigator的在index.ios.js.特别是,当用户在页面artistPage上时,我需要更改样式以隐藏TabBar .
我怎样才能做到这一点?有任何想法吗?
我尝试在道具中传递样式但是有只读模式(
index.ios.js
'use strict'
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
View,
Image,
Text,
NavigatorIOS,
TouchableHighlight,
NavigationBar,
} from 'react-native';
import config from './config';
import ImagesList from './app/imagesList';
import TabNavigator from 'react-native-tab-navigator';
import Badge from './node_modules/react-native-tab-navigator/Badge'
class MyApp extends Component {
constructor(props) {
super(props);
this.state = {
selectedTab: 'images',
showTabBar: true
};
}
render() {
let tabBarStyle = {};
let sceneStyle = {}; …Run Code Online (Sandbox Code Playgroud) 我有一个标准表格,并且有几个字段组,如主要信息、地址、公司地址等。
我想构建分步表单而不是包含很多字段的一页表单。
最好的方法是什么?我找到了https://github.com/schneems/wicked但我不明白如何使用它。