본문 바로가기

개발/React Native

[react-native] Bottom Tab Navigator 페이지 전환 예제 + 상위 컴포넌트 함수전달

728x90

 

Bottom Tab Navigator 사용 예제이다.

 

또한 하위 컴포넌트에서 이벤트를 발생시켰을 때, 상위 컴포넌트로 함수를 전달하는 방법을 작성한다.

 


상위 컴포넌트

테스트를 위한 예제 컴포넌트를 아래와 같이 만들었다.

 

아래에 <Tab.Screen ... /> 의 component 속성에 이동하려는 컴포넌트 명을 입력한다.

 

component 속성 내부에 있는 컴포넌트 명이 하위 컴포넌트가 된다.

 

Tab Navigator로 하위 컴포넌트에 함수를 전달할 때, 중요한 것은 "initialParams =" 이다.

 

해당 명령어를 이용하면 Tab Navigator에서도 함수를 전달할 수 있게 된다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
...
 
const Tab = createBottomTabNavigator(); //네비게이터 변수 정의 
 
...
...
 
export default class Test extends React.Component {
 
    constructor(props) {
        super(props);
        this.state = {
            dataSend : false,
                ...
        };
    }
    
    render() {
        const tabTest = 'A';
        const tabTest2 = 'B';
 
        return (
            
            <SafeAreaView edges={['bottom']} style={{flex: 1, backgroundColor:'#fff'}}>   
                <Tab.Navigator
                    screenOptions={({ route }) => ({
                        tabBarIcon: ({ focused, color, size }) => {
                            let icon_source;
                            if (route.name === tabTest) {
                                icon_source = focused ? require('../Resources/images/A.png') : require('../Resources/images/inA.png');
                            } else {
                                icon_source = focused ? require('../Resources/images/B.png') : require('../Resources/images/inB.png');
                            }
                            // You can return any component that you like here!
                            return (<Image style={{width: 24, height: 24,}} source={icon_source} />);
                        },
 
                    })}
                    initialRouteName={tabTest}
                    backBehavior={'initialRoute'}
                    tabBarPosition={'bottom'//네비게이션 탭 위치
                    tabBarOptions={{
                        keyboardHidesTabBar: true// 검색탭에서 키보드 표시할 때 탭바 숨김
                        activeTintColor: '#2B539E',
                        inactiveTintColor: '#999999',
                        showIcon: true,
                        pressColor: '#fff',
                        style: {height: 56, backgroundColor:'#fff', borderTopColor: '#dddde2', borderTopWidth: 1},
                        labelStyle: {paddingBottom: 7},
                        tabStyle: {height: 56, paddingTop: 8, paddingBottom: 8},
                        indicatorStyle: {
                            borderBottomWidth: 0,
                            backgroundColor: '#fff',
                        },
                        iconStyle: {
                            marginBottom: 0,
                            paddingBottom: 0
                        },
                        labelStyle: {
                            paddingTop: 0,
                            marginTop: 0,
                            fontSize: 12
                        }
                    }}
                    swipeEnabled={true}
                    animationEnabled={true}
                    lazy={false}
                    timingConfig={{duration:1000,}}
                >
                    <Tab.Screen name={tabTest} component={ChildScreen} 
listeners={({navigation, route}) => ({tabPress : e => {'tab 클릭 시 이벤트'}})} 
initialParams = {{dataSend : this.dataSend.bind(this)}}/>
                    <Tab.Screen name={tabTest2} component={ChildScreen2} 
listeners={({navigation, route}) => ({tabPress : e => {'tab 클릭 시 이벤트'}})}/>
                </Tab.Navigator>
            )
    }
        /**전달하려는 함수*/
        async dataSend(){
     데이터 제어
    }
}
 
cs
 
 
 

 


하위 컴포넌트

 

상위 컴포넌트인 Test 컴포넌트에서 TabScreen을 이용해서 해당 하위 컴포넌트로 화면 전환을 할 수 있다.

 

여기서 중요한 것은 상위 컴포넌트에서 전달받은 dataSend 함수를 이용해 상위 컴포넌트를 제어할 수 있다.

 

constructor 내부에 console.log 부분을 보면, 상위 컴포넌트에서 전달해준 dataSend 함수가 전달 된 것을 확인 할 수 있고, 해당 함수를 실행시키면 상위 컴포넌트 {dataSend : this.dataSend.bind(this)} 부분의 dataSend 함수를 실행하게 된다.

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
 
 
const Tab = createBottomTabNavigator(); //네비게이터 변수 정의 
 
...
...
 
export default class ChildScreen extends React.Component {
 
    constructor(props) {
        super(props);
        //상위 컴포넌트로부터 전달받은 함수가 담겨있는 객체
        console.log(props.route.params);
        this.state = {
                ...
        };
    }
    
    render() {
        <View>
            <Text>탭 메뉴 중 하나인 ChildScreen</Text>
              ...
        </View>
 
            )
    }
    ...
    }
}
 
cs
728x90