Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Last active December 15, 2023 09:38
Show Gist options
  • Save alperbayram/4ebd7e84395d88446e0a45739698c10b to your computer and use it in GitHub Desktop.
Save alperbayram/4ebd7e84395d88446e0a45739698c10b to your computer and use it in GitHub Desktop.
import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
container: {
marginVertical: 60,
flex: 1,
alignItems: "center",
justifyContent: "space-between",
},
screencontainer: {
display: "flex",
alignItems: "center",
flexDirection: "row",
justifyContent: "center",
gap: 10,
},
title: {
fontSize: 30,
fontWeight: "bold",
},
subtitle: {
textAlign: "center",
fontSize: 20,
marginBottom: 15,
fontWeight: "bold",
},
linktitle: {
fontSize: 20,
color: "blue",
fontWeight: "bold",
},
image: {
width: 100,
height: 100,
borderRadius: 50,
resizeMode: "cover",
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment