Skip to content

Instantly share code, notes, and snippets.

@Billmike
Created November 7, 2019 14:29
Show Gist options
  • Save Billmike/86b8757cf2dc57b95bc3fa25c31beca2 to your computer and use it in GitHub Desktop.
Save Billmike/86b8757cf2dc57b95bc3fa25c31beca2 to your computer and use it in GitHub Desktop.
const layouts = [
{
id: "column",
name: "Column",
layout: {
container: {
flexDirection: "column",
justifyContent: "center",
alignItems: "center"
}
}
},
{
id: "row",
name: "Row",
layout: {
container: {
flexDirection: "row",
alignItems: "center"
}
}
},
{
id: "wrap",
name: "Wrap",
layout: {
container: {
flexDirection: "row",
flexWrap: "wrap"
},
child: {
flex: 0,
width: width / 2 - 8 * 8
}
}
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment