Skip to content

Instantly share code, notes, and snippets.

View BMonsalvatge's full-sized avatar
💻
Stream Occassionally on twitch.tv/rockinoutt - Games & Code

Bryan Monsalvatge BMonsalvatge

💻
Stream Occassionally on twitch.tv/rockinoutt - Games & Code
View GitHub Profile
@BMonsalvatge
BMonsalvatge / ContentView.swift
Created February 7, 2020 14:50
Body Of Our List Add Item View
var body: some View {
ZStack {
VStack {
NavigationView {
List {
ForEach(listItems, id: \.self) { item in
Text(item.name).listRowBackground(Color(item.color))
}
}
.navigationBarTitle(Text("List Items"))
@BMonsalvatge
BMonsalvatge / buildspec.yml
Created September 4, 2018 00:17
GatsbyJS CodeBuild Example
version: 0.2
phases:
install:
commands:
- echo "install step"
- npm install -g gatsby
pre_build:
commands:
- echo "pre_build step"
- npm install