bigbluebutton-tablet/App.tsx

26 lines
658 B
TypeScript
Raw Normal View History

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