2015-03-06 17:54:10 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-06 17:54:10 +00:00
|
|
|
*
|
|
|
|
* @providesModule TabBarIOS
|
2017-03-06 17:53:32 +00:00
|
|
|
* @flow
|
2015-03-06 17:54:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-03-06 17:53:32 +00:00
|
|
|
const React = require('React');
|
|
|
|
const StyleSheet = require('StyleSheet');
|
|
|
|
const TabBarItemIOS = require('TabBarItemIOS');
|
|
|
|
const View = require('View');
|
2015-03-06 17:54:10 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class DummyTabBarIOS extends React.Component<$FlowFixMeProps> {
|
2017-03-06 17:53:32 +00:00
|
|
|
static Item = TabBarItemIOS;
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
render() {
|
2015-03-06 17:54:10 +00:00
|
|
|
return (
|
|
|
|
<View style={[this.props.style, styles.tabGroup]}>
|
|
|
|
{this.props.children}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-03-06 17:54:10 +00:00
|
|
|
|
2017-03-06 17:53:32 +00:00
|
|
|
const styles = StyleSheet.create({
|
2015-03-06 17:54:10 +00:00
|
|
|
tabGroup: {
|
|
|
|
flex: 1,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = DummyTabBarIOS;
|