Skip to content

Commit bb1d890

Browse files
committed
asdsad
1 parent ea717c2 commit bb1d890

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

_posts/ReactNative/2023-05-03-12 네비게이션.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ route.params 안에서 변수를 전달할 수 있다.
122122

123123
<Stack.Navigator
124124
initialRouteName="List"
125-
screenOptions=<%raw%>{{
125+
screenOptions=\{\{
126126
contentStyle: {
127127
backgroundColor: '#fff',
128128
},
129-
}}<%endraw%>
129+
\}\}
130130
>
131131
```
132132
@@ -139,13 +139,12 @@ route.params 안에서 변수를 전달할 수 있다.
139139
```jsx
140140
<Stack.Navigator
141141
initialRouteName="List"
142-
screenOptions={{
142+
screenOptions=\{\{
143143
contentStyle: {
144144
backgroundColor: '#fff',
145145
},
146-
}}
146+
\}\}
147147
>
148-
{%raw%}
149148
<Stack.Screen
150149
name={'List'}
151150
component={ListScreen}
@@ -158,8 +157,6 @@ route.params 안에서 변수를 전달할 수 있다.
158157
/>
159158
<Stack.Screen name={'SignIn'} component={SignInScreen} />
160159
</Stack.Navigator>
161-
{%endraw%}
162-
163160
```
164161
165162
<% endraw %>

0 commit comments

Comments
 (0)