Files
pwap/mobile/src/screens/EducationScreen.tsx
T

32 lines
784 B
TypeScript

import React from 'react';
import { StyleSheet } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import PezkuwiWebView from '../components/PezkuwiWebView';
/**
* Education (Perwerde) Screen
*
* Uses WebView to load the education platform from the web app.
* Includes courses, enrollments, certificates, and progress tracking.
* Native wallet bridge allows transaction signing for enrollments.
*/
const EducationScreen: React.FC = () => {
return (
<SafeAreaView style={styles.container}>
<PezkuwiWebView
path="/education"
title="Perwerde"
/>
</SafeAreaView>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#FFFFFF',
},
});
export default EducationScreen;