如何在smartface app studio上创建Tabgroup

时间:2015-06-27 12:43:56

标签: smartface.io

我曾尝试在smartface.io上创建一个类似于控件的标签视图或标签组,但我无法在网站上找到任何解决方案。

请任何人了解如何创建标签组。我无法在IDE的视图托盘上找到任何标签视图。感谢

1 个答案:

答案 0 :(得分:1)

您可以使用文本按钮,将它们放在页面顶部,根据需要使用。并将容器对象放在这些按钮下。按下按钮时,使相关容器的可见性为true,其他为false。例如,当按下button1时,让

getInitialState: function(){
    // try to return stale state from cache
    // if not available, set loading to true
},
componentDidMount: function(){
  MyAction.fetchsomeData();
},

storeDidChange: function(){
  var data = MyStore.getsomeData();
  // set state and set local storage cache
  this.setState({loading: false});
},
render: function(){
  // wait only if local storage does not have cached stale state
  if( this.state.loading ){
     return null;
  }
  // do render
}

等等。

您还应该检查Smartface in Action项目。您可以在欢迎页面中找到项目,例如在pgListView。