2022-02-16 10:45:44 +08:00
|
|
|
import * as React from 'react';
|
2022-02-16 07:55:10 +08:00
|
|
|
|
2022-02-16 22:15:11 +08:00
|
|
|
import {StyleSheet, View, Platform, SafeAreaView} from 'react-native';
|
2022-02-16 10:45:44 +08:00
|
|
|
import {BigbluebuttonMobile} from 'bigbluebutton-mobile-sdk';
|
2022-02-16 22:15:11 +08:00
|
|
|
import { Bootstrap } from './react-native/bootstrap/start/component';
|
2022-02-16 07:55:10 +08:00
|
|
|
|
2022-02-16 10:45:44 +08:00
|
|
|
export default function App() {
|
2022-02-16 07:55:10 +08:00
|
|
|
return (
|
2022-02-16 22:15:11 +08:00
|
|
|
<SafeAreaView>
|
|
|
|
{/* <BigbluebuttonMobile
|
2022-02-16 11:21:45 +08:00
|
|
|
broadcastAppBundleId="org.bigbluebutton.mobile.BigBlueButton-Broadcast"
|
2022-02-16 11:06:08 +08:00
|
|
|
url="https://bigbluebutton.org"
|
2022-02-16 10:45:44 +08:00
|
|
|
style={styles.bbb}
|
2022-02-16 22:15:11 +08:00
|
|
|
/> */}
|
|
|
|
<Bootstrap/>
|
|
|
|
</SafeAreaView>
|
2022-02-16 07:55:10 +08:00
|
|
|
);
|
2022-02-16 10:45:44 +08:00
|
|
|
}
|
2022-02-16 07:55:10 +08:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
2022-02-16 10:45:44 +08:00
|
|
|
bbb: {
|
2022-02-16 11:06:08 +08:00
|
|
|
marginTop: Platform.select({ios: 20, android: 0}),
|
2022-02-16 10:45:44 +08:00
|
|
|
flex: 1,
|
2022-02-16 07:55:10 +08:00
|
|
|
},
|
|
|
|
});
|