Я новичок в React Native, и я пытаюсь использовать вкладки с помощью этого пакета https://github.com/LiuC520/react-native-scrollable-tab-view-forked, Вот как создаются вкладки
<ScrollableTabView
renderTabBar={() => (
<ScrollableTabBar
style={styles.scrollStyle}
tabStyle={styles.tabStyle}
/>
)}
tabBarTextStyle={styles.tabBarTextStyle}
tabBarInactiveTextColor={'black'}
tabBarActiveTextColor={'red'}
tabBarUnderlineStyle={styles.underlineStyle}
initialPage={2}
>
<View key={'1'} tabLabel={'firt tab '} style={{flex:1,backgroundColor:'red'}}/>
<View key={'2'} tabLabel={'second tab'} style={{flex:1,backgroundColor:'blue'}}/>
<View key={'3'} tabLabel={'third tab'} style={{flex:1,backgroundColor:'yellow'}}/>
</ScrollableTabView>
И все работает нормально
но когда я пытаюсь отобразить представление для отображения внутри каждой вкладки, я потерпел неудачу, я попробовал этот способ
<View key={'1'} tabLabel={'firt tab '} style={{flex:1,backgroundColor:'red',height:100}}>
<View><Text>first</Text></View>
</View>
, но он выдает ошибку "TypeError: JSON.stringify не может сериализовать циклическую структуру", я не понимаю, что это значит, если кто-то уже работал с этим пакетом или знает, в чем заключается решение, пожалуйста, помогите.
это весь мой код
import React from 'react';
import { ScrollView, ImageBackground, Image, View, StyleSheet,
StatusBar, Dimensions, Platform } from 'react-native';
import { Block, Button, Text, theme } from 'galio-framework';
import ScrollableTabView, { DefaultTabBar, ScrollableTabBar } from 'react-native-scrollable-tab-view-forked';
const { height, width } = Dimensions.get('screen');
import { Images, argonTheme } from '../constants/';
import { HeaderHeight } from "../constants/utils";
import ajax from '../services/FetchSubjects';
import Loader from '../components/Loader';
const URI = 'http://localhost:8000';
export default class SubjectDetails extends React.Component {
constructor(props) {
super(props);
this.state = {
loading: true,
data: {
subject: {},
meals: []
}
}
}
async componentDidMount() {
const data = await ajax.fetchSubjectDetails(this.props.navigation.state.params.subjectId);
this.setState({
data: {
subject: data.subject,
meals: data.meals
},
loading: false
});
}
render() {
const { navigation } = this.props;
return (
<Block safe style={styles.container}>
<Block>
<StatusBar barStyle="light-content" />
<Loader loading={this.state.loading} />
<Block flex style={styles.category}>
<ImageBackground
source={this.state.loading ? Images.Pro : { uri: URI + this.state.data.subject.cover.url }}
style={{ flex: 1, height: 160, width, zIndex: 1 }}
>
<Block style={styles.categoryBg}>
<Block style={styles.categoryTitle}>
<Text size={18} bold color={theme.COLORS.WHITE}>
{this.state.data.subject.name}
</Text>
</Block>
</Block>
</ImageBackground>
</Block>
</Block>
<Block style={{marginTop:160,height:"100%"}}>
<ScrollView>
<ScrollableTabView
renderTabBar={() => (
<ScrollableTabBar
style={styles.scrollStyle}
tabStyle={styles.tabStyle}
/>
)}
tabBarTextStyle={styles.tabBarTextStyle}
tabBarInactiveTextColor={'black'}
tabBarActiveTextColor={'#2B4D8E'}
tabBarUnderlineStyle={styles.underlineStyle}
initialPage={2}
>
<View key={'1'} tabLabel={'firt tab '} style={{flex:1,backgroundColor:'red',height:100}}><Text>Lorem ipsum</Text></View>
<View key={'2'} tabLabel={'second tab'} style={{flex:1,backgroundColor:'blue',height:100}}/>
<View key={'3'} tabLabel={'third tab'} style={{flex:1,backgroundColor:'yellow',height:100}}/>
<View key={'4'} tabLabel={'Fourth tab'} style={{flex:1,backgroundColor:'yellow',height:100}}/>
</ScrollableTabView>
</ScrollView>
</Block>
</Block>
);
}
}