BlueWallet/navigation/LNDCreateInvoiceStack.tsx

62 lines
2.0 KiB
TypeScript
Raw Normal View History

import { createNativeStackNavigator } from '@react-navigation/native-stack';
2024-05-20 11:54:13 +02:00
import React from 'react';
import navigationStyle, { CloseButtonPosition } from '../components/navigationStyle';
2024-05-20 11:54:13 +02:00
import { useTheme } from '../components/themes';
import loc from '../loc';
import {
LNDCreateInvoiceComponent,
LNDViewAdditionalInvoiceInformationComponent,
LNDViewAdditionalInvoicePreImageComponent,
2024-05-20 11:54:13 +02:00
LNDViewInvoiceComponent,
SelectWalletComponent,
} from './LazyLoadLNDCreateInvoiceStack';
const Stack = createNativeStackNavigator();
const LNDCreateInvoiceRoot = () => {
const theme = useTheme();
return (
<Stack.Navigator screenOptions={{ headerShadowVisible: false }}>
<Stack.Screen
name="LNDCreateInvoice"
component={LNDCreateInvoiceComponent}
options={navigationStyle({
title: loc.receive.header,
closeButtonPosition: CloseButtonPosition.Right,
headerBackVisible: false,
statusBarStyle: 'light',
})(theme)}
/>
<Stack.Screen
name="SelectWallet"
component={SelectWalletComponent}
options={navigationStyle({ title: loc.wallets.select_wallet })(theme)}
/>
<Stack.Screen
name="LNDViewInvoice"
component={LNDViewInvoiceComponent}
options={navigationStyle({
statusBarStyle: 'auto',
headerTitle: loc.lndViewInvoice.lightning_invoice,
headerStyle: {
backgroundColor: theme.colors.customHeader,
},
})(theme)}
/>
<Stack.Screen
name="LNDViewAdditionalInvoiceInformation"
component={LNDViewAdditionalInvoiceInformationComponent}
options={navigationStyle({ title: loc.lndViewInvoice.additional_info })(theme)}
/>
<Stack.Screen
name="LNDViewAdditionalInvoicePreImage"
component={LNDViewAdditionalInvoicePreImageComponent}
options={navigationStyle({ title: loc.lndViewInvoice.additional_info })(theme)}
/>
</Stack.Navigator>
);
};
export default LNDCreateInvoiceRoot;