fixed refresh, tablet drawer, drawer titles

This commit is contained in:
ivic00
2024-11-20 00:27:43 +01:00
parent bd890406b1
commit 81477ed85b
8 changed files with 251 additions and 178 deletions

View File

@ -17,9 +17,9 @@ const DrawerButton = (props: IDrawerButtonProps) => {
const styles = StyleSheet.create({
iconContainer: {
width: "70%",
width: isTablet ? '50%' : "70%",
aspectRatio: 1,
borderRadius: 50,
borderRadius: 100,
},
labelStyle: { fontSize: 15, fontFamily: "Poppins_400Regular" },
});
@ -42,7 +42,7 @@ const DrawerButton = (props: IDrawerButtonProps) => {
</View>
)}
style={{
aspectRatio: 1,
aspectRatio: isTablet ? 1.2 : 1,
borderRadius: 18.55,
marginBottom: 12,
flexDirection: "column",