mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
27 lines
828 B
TypeScript
27 lines
828 B
TypeScript
|
import React from 'react';
|
||
|
import { createNativeStackNavigator } from '@react-navigation/native-stack';
|
||
|
import { SignVerifyComponent } from './LazyLoadSignVerifyStack';
|
||
|
import { useTheme } from '../components/themes';
|
||
|
import navigationStyle from '../components/navigationStyle';
|
||
|
import loc from '../loc';
|
||
|
|
||
|
const Stack = createNativeStackNavigator();
|
||
|
|
||
|
const SignVerifyStackRoot = () => {
|
||
|
const theme = useTheme();
|
||
|
|
||
|
return (
|
||
|
<Stack.Navigator screenOptions={{ headerShadowVisible: false }}>
|
||
|
<Stack.Screen
|
||
|
name="SignVerify"
|
||
|
component={SignVerifyComponent}
|
||
|
options={navigationStyle({ closeButton: true, headerBackVisible: false, statusBarStyle: 'light', title: loc.addresses.sign_title })(
|
||
|
theme,
|
||
|
)}
|
||
|
/>
|
||
|
</Stack.Navigator>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default SignVerifyStackRoot;
|