From d98ba3b7e3f46bc8813fa62a8bf30292933e9a80 Mon Sep 17 00:00:00 2001 From: kacperkapusciak Date: Fri, 16 Jun 2023 14:44:23 +0200 Subject: [PATCH 1/3] fix: add isNewBackTitleImplementation constant --- TestsExample/App.js | 1 + TestsExample/src/Test.tsx | 63 +++++++++++++++++++++++++++++++++++++++ src/index.native.tsx | 2 ++ src/index.tsx | 1 + src/utils.ts | 6 ++++ 5 files changed, 73 insertions(+) create mode 100644 TestsExample/src/Test.tsx diff --git a/TestsExample/App.js b/TestsExample/App.js index c4b499641d..b9e3cda10d 100644 --- a/TestsExample/App.js +++ b/TestsExample/App.js @@ -87,6 +87,7 @@ import Test1646 from './src/Test1646'; import Test1649 from './src/Test1649'; import Test1683 from './src/Test1683'; import Test1726 from './src/Test1726'; +import Test from './src/Test'; enableFreeze(true); diff --git a/TestsExample/src/Test.tsx b/TestsExample/src/Test.tsx new file mode 100644 index 0000000000..0efbf58036 --- /dev/null +++ b/TestsExample/src/Test.tsx @@ -0,0 +1,63 @@ +import {NavigationContainer} from '@react-navigation/native'; + +import {createNativeStackNavigator} from '@react-navigation/native-stack'; + +import React from 'react'; +import {Button, View} from 'react-native'; + +const Stack = createNativeStackNavigator(); + +const Screen1 = ({navigation}) => ( + +