mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-21 23:47:56 +00:00
24d6a942f8
BREAKING: Removed multi-language support (i18n) - will be re-added later Changes: - Removed i18n system (6 language files, LanguageContext) - Expanded WalletScreen, SettingsScreen, SwapScreen with more features - Added KurdistanSun component, HEZ/PEZ token icons - Added EditProfileScreen, WalletSetupScreen - Added button e2e tests (Profile, Settings, Wallet) - Updated plan: honest assessment - 42 nav buttons with mock data - Fixed terminology: Polkadot→Pezkuwi, Substrate→Bizinikiwi Reality check: UI complete with mock data, converting to production one-by-one
26 lines
842 B
TypeScript
26 lines
842 B
TypeScript
import React from 'react';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import { ErrorBoundary } from './src/components/ErrorBoundary';
|
|
import { AuthProvider } from './src/contexts/AuthContext';
|
|
import { PezkuwiProvider } from './src/contexts/PezkuwiContext';
|
|
import { BiometricAuthProvider } from './src/contexts/BiometricAuthContext';
|
|
import { ThemeProvider } from './src/contexts/ThemeContext';
|
|
import AppNavigator from './src/navigation/AppNavigator';
|
|
|
|
export default function App() {
|
|
return (
|
|
<ErrorBoundary>
|
|
<ThemeProvider>
|
|
<AuthProvider>
|
|
<PezkuwiProvider>
|
|
<BiometricAuthProvider>
|
|
<StatusBar style="auto" />
|
|
<AppNavigator />
|
|
</BiometricAuthProvider>
|
|
</PezkuwiProvider>
|
|
</AuthProvider>
|
|
</ThemeProvider>
|
|
</ErrorBoundary>
|
|
);
|
|
}
|