This is an example workspace for testing flat token generation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
({ | |
devices: [ | |
{ | |
deviceId: "iPhone SE", | |
heightMode: "At Least" | |
}, | |
{ | |
deviceId: "iPhone 8", | |
heightMode: "At Least" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"devices" : [ | |
{ | |
"deviceId" : "iPhone SE", | |
"heightMode" : "At Least" | |
}, | |
{ | |
"deviceId" : "iPhone 8", | |
"heightMode" : "At Least" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
devices: [ | |
{ | |
deviceId: 'iPhone SE', | |
heightMode: 'At Least', | |
}, | |
{ | |
deviceId: 'iPhone 8', | |
heightMode: 'At Least', | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"types" : [ | |
{ | |
"case" : "type", | |
"data" : { | |
"cases" : [ | |
{ | |
"case" : "normal", | |
"name" : "undefined", | |
"params" : [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |