import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; export default class Environment { constructor(CS, phoneRef) { this.phoneRef = phoneRef; this.CoreSystem = CS; } render() { let CurrentView = this.CoreSystem.getCurrentView(); let defaultContainer = CurrentView.getDefaultContainer(); let Rows = CurrentView.getRows(defaultContainer); return Row Colasdasdasdasdasd {Rows.map((row) => { return Row : {row.id} })}
{this.CoreSystem.render()}
Col
row
} } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: "column" }, mobileView: { backgroundColor: 'white', borderWidth: 4, borderColor: 'orange', flex:1, alignSelf: 'stretch', // iphone X width:1125/3, height: 2436/3 }, row: { flexDirection: "row", borderWidth: 1 }, col: { flexDirection: "column", borderWidth: 1 } });