import * as React from "react"; import { withTheme } from "../core/theming"; import { COMPONENT_TYPES, FORM_TYPES, FIELD_NAME, } from "../core/component-types"; import Row from "./Row"; import Switch from "./Switch"; import theme from "../styles/DefaultTheme"; import { StyleProp, ViewStyle } from "react-native"; type Props = { title?: string; subtitle?: string; style?: StyleProp; value: boolean; onValueChange?: (value: boolean) => void; color?: string; theme: typeof theme; }; const RowBodySwitch: React.FC = ({ title, subtitle, style, value, onValueChange, color, theme: { colors, typography }, }) => { return ( ( )} style={style} /> ); }; export default withTheme(RowBodySwitch); export const SEED_DATA = [ { name: "Row Single Line Body Switch", tag: "RowBodySwitch", description: "A row with left aligned body text and a right aligned switch", preview_image_url: "{CLOUDINARY_URL}/Row_SingleLine_BodyToggle.png", category: COMPONENT_TYPES.deprecated, supports_list_render: true, props: { title: { label: "Title", description: "Text to display", formType: FORM_TYPES.string, defaultValue: "Beautiful West Coast Villa", editable: true, }, color: { label: "Color", description: "Custom color for switch", editable: true, required: false, formType: FORM_TYPES.color, }, fieldName: { ...FIELD_NAME, defaultValue: "switchValue", handlerPropName: "onValueChange", }, }, layout: {}, }, { name: "Row Double Line Body Switch", tag: "RowBodySwitch", description: "A row with left aligned body text and subtitle text and a right aligned switch", category: COMPONENT_TYPES.deprecated, preview_image_url: "{CLOUDINARY_URL}/Row_DoubleLine_Body_Toggle.png", supports_list_render: true, props: { title: { label: "Title", description: "Text to display", formType: FORM_TYPES.string, defaultValue: "Beautiful West Coast Villa", editable: true, }, subtitle: { label: "Subtitle", description: "Subtitle text to display", formType: FORM_TYPES.string, defaultValue: "San Diego", editable: true, }, color: { label: "Color", description: "Custom color for switch", editable: true, required: false, formType: FORM_TYPES.color, }, fieldName: { ...FIELD_NAME, defaultValue: "switchValue", handlerPropName: "onValueChange", }, }, layout: {}, }, ];