How can we get a round button. Currently the button stretches from left to right. I don't want to use position absolute as I have other items that go under this fab button
import { FAB } from 'react-native-paper';
const MyComponent = () => (
<FAB
style={styles.fab}
small
icon="plus"
onPress={() => console.log('Pressed')}
/>
);
const styles = StyleSheet.create({
fab: {
position: 'relative',
margin: 16,
right: 0,
bottom: 0,
},
})