const App = () => {
return (
<View style={styles.container}>
<CallContent />
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
You will see the result as below:
You can use the CallContent
:
const App = () => {
return (
<View style={styles.container}>
<CallContent />
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
You can implement incoming/outgoing screens using our RingingCallContent
component:
IncomingCall
/OutgoingCall
components depending upon the call states.CallContent
component.JoiningCallIndicator
component.const App = () => {
return (
<View style={styles.container}>
<RingingCallContent />
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
Stream SDK provides highly customizable UI components. Therefore, you can adjust each style or implement your own UI for each part of the components. This list describes what you can do with Stream SDK’s UI components: