Skip to main content
Version: 1.0.114

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,
},
}
};