Changing the form view
actions: [
{
name: 'new',
layout: [
['@Header', { children: 'Enter user details' }],
[
{ flexDirection: 'row', flex: true },
[
['name', { flexGrow: 1, marginRight: '10px' }],
['surname', { flexGrow: 1 }],
],
],
['@Header', { children: 'Enter user credentials' }],
[
{ flexDirection: 'row', flex: true },
[
['login', { flexGrow: 1, marginRight: '10px' }],
['password', { flexGrow: 1 }],
],
],
],
},
// other actions
],Last updated