I'm still pretty new to react native so please bare with me
My code is nothing groundbreaking:
export const HomeScreen = () => {
return (
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<Button mode="contained">Button</Button>
</View>
);
};
I am assuming this is the default in some newer version of React Native Paper, while the other type was the default before, which is why every tutorial contains that one. I didn't find a way in the docs to play around with the shape, and swapping back to a previous version just so the buttons look different sounds pretty excessive
Any help is appreciated
Yes for making it less rounded ,please apply the other props available like borderRadius and apply to button and not the view.
return (
<View style={{ flex: 1, alignItems: "center", justifyContent:
"center" }}>
<Button style={{ borderRadius: 10 }}
mode="contained">Button</Button>
</View>
);
};