Skip to content

Commit

Permalink
Merge pull request #30 from AreaLayer/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
22388o authored Mar 25, 2024
2 parents 64569fd + fcf095d commit 5668b4d
Show file tree
Hide file tree
Showing 25 changed files with 10,755 additions and 5,157 deletions.
34 changes: 12 additions & 22 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -1,31 +1,21 @@
import React from 'react';
import {GluestackUIProvider} from '@gluestack-ui/themed';
import {config} from './src/theme/config';

import {NavigationContainer} from '@react-navigation/native';
import {NativeBaseProvider} from 'native-base';
import {StyleSheet, View} from 'react-native';
import {theme} from './src/theme';
import {Heading} from 'native-base';
import OnBoardingNavigation from './src/navigation/OnBoarding';
import {ConnectionProvider} from './src/providers/ConnectionProvider';

function App(): React.JSX.Element {
return (
<NavigationContainer>
<NativeBaseProvider theme={theme} isSSR={false}>
<View style={styles.container}>
<Heading fontFamily="body" color={'secondary.600'} fontSize={'2xl'}>
FireBolt Wallet
</Heading>
</View>
</NativeBaseProvider>
</NavigationContainer>
<GluestackUIProvider config={config}>
<ConnectionProvider>
<NavigationContainer>
<OnBoardingNavigation />
</NavigationContainer>
</ConnectionProvider>
</GluestackUIProvider>
);
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#2596be',
justifyContent: 'center',
alignItems: 'center',
},
});

export default App;
1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module '*.jpg';
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @format
*/

import './shim';
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
Expand Down
Loading

0 comments on commit 5668b4d

Please sign in to comment.