import React from 'react'; import { Button, View, Text } from 'react-native'; const theme = { OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES: 10, OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES: 5, OBJECT_NAME_COLOR: 'rgb(136, 19, 145)', OBJECT_VALUE_NULL_COLOR: 'rgb(128, 128, 128)', OBJECT_VALUE_UNDEFINED_COLOR: 'rgb(128, 128, 128)', OBJECT_VALUE_REGEXP_COLOR: 'rgb(196, 26, 22)', OBJECT_VALUE_STRING_COLOR: 'rgb(196, 26, 22)', OBJECT_VALUE_SYMBOL_COLOR: 'rgb(196, 26, 22)', OBJECT_VALUE_NUMBER_COLOR: 'rgb(28, 0, 207)', OBJECT_VALUE_BOOLEAN_COLOR: 'rgb(28, 0, 207)', OBJECT_VALUE_FUNCTION_PREFIX_COLOR: 'rgb(13, 34, 170)', ARROW_COLOR: '#6e6e6e', ARROW_MARGIN_RIGHT: 3, ARROW_FONT_SIZE: 12, ARROW_ANIMATION_DURATION: '0', }; class Inspect extends React.Component<{ name?: string; value: any }, { expanded: boolean }> { state = { expanded: false }; render() { const { name, value } = this.props; const { expanded } = this.state; const toggle = ( {name && ((Array.isArray(value) && value.length) || (value && typeof value === 'object' && !Array.isArray(value) && Object.keys(value).length)) ? (