Skip to content

Instantly share code, notes, and snippets.

View dabbott's full-sized avatar

Devin Abbott dabbott

View GitHub Profile

Flat Tokens

This is an example workspace for testing flat token generation.

Pages

Colors

TextStyles

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Let's change this line to see if it works!</Text>
</View>
);
}
@dabbott
dabbott / Example.md
Last active April 17, 2019 19:55
Render function transformation

The main idea

The React way: let UI = ƒ(state)

Assume that our layers are predefined and return value of our render function needs to look like this:

let UI = {
  layers: {
 container: {
@dabbott
dabbott / Card.component
Last active April 1, 2019 15:03
Card component (JSX)
({
devices: [
{
deviceId: "iPhone SE",
heightMode: "At Least"
},
{
deviceId: "iPhone 8",
heightMode: "At Least"
},
@dabbott
dabbott / Card.component
Last active April 1, 2019 03:05
Card Component (XML)
<?xml version="1.0" encoding="UTF-8" ?>
<root>
<devices>
<device id="iPhone SE" heightMode="At Least">
<device id="iPhone 8" heightMode="At Least">
<device id="iPhone XS Max" heightMode="At Least">
</devices>
<examples>
<example id="Headline_only" name="Headline only">
@dabbott
dabbott / Card.component
Created April 1, 2019 00:12
Card.component (JSON)
{
"devices" : [
{
"deviceId" : "iPhone SE",
"heightMode" : "At Least"
},
{
"deviceId" : "iPhone 8",
"heightMode" : "At Least"
},
@dabbott
dabbott / Card.component
Created April 1, 2019 00:11
Card component (JSON5)
{
devices: [
{
deviceId: 'iPhone SE',
heightMode: 'At Least',
},
{
deviceId: 'iPhone 8',
heightMode: 'At Least',
},
{
"types" : [
{
"case" : "type",
"data" : {
"cases" : [
{
"case" : "normal",
"name" : "undefined",
"params" : [
import React from "react";
function compareNodePosition(a, b) {
if (!a || !b) return "none";
const documentPosition = a.compareDocumentPosition(b);
if (documentPosition & Node.DOCUMENT_POSITION_CONTAINS) return "contains";
if (documentPosition & Node.DOCUMENT_POSITION_CONTAINED_BY)
return "contained_by";
import React, { Component } from "react";
import "./App.css";
import ChecklistCombo from "./generated/components/ChecklistCombo";
import ChecklistCard from "./generated/components/ChecklistCard";
import ChecklistItemCard from "./generated/components/ChecklistItemCard";
function compareNodePosition(a, b) {
if (!a || !b) return "implementation_specific";