View
const checkbox = {
  component: NANO.CHECKBOX,
  value: true,
  name: 'checkbox',
  props: {
    style: {},
  }
};
const text = {
  component: NANO.TEXT,
  value: 'text',
  name: 'text',
  props: {
    style: {fontSize: 14},
  },
};
const view = {
  component: NANO.VIEW,
  content: [text, checkbox],
  props: {
    style: {
      paddingHorizontal: 10,
      justifyContent: 'space-between',
      flexDirection: 'row',
      alignItems: 'center',
      height: 50,
    },
  }
};
View example
Loading...