@developer_tribe/react-builder 1.2.33 → 1.2.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build-components/OnboardDot/OnboardDotProps.generated.d.ts +3 -3
- package/dist/build-components/patterns.generated.d.ts +52 -52
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.web.cjs.js +4 -4
- package/dist/index.web.cjs.js.map +1 -1
- package/dist/index.web.esm.js +6 -6
- package/dist/index.web.esm.js.map +1 -1
- package/package.json +1 -1
- package/scripts/prebuild/assets/prompt_scheme.md +34 -1
- package/scripts/prebuild/generate-prompt-schemes.js +143 -7
- package/src/assets/meta.json +1 -1
- package/src/assets/prompt-scheme-onboard.generated.ts +1 -1
- package/src/assets/prompt-scheme-paywall.generated.ts +1 -1
- package/src/attributes-editor/useAttributesEditorModel.ts +12 -15
- package/src/build-components/OnboardDot/OnboardDot.tsx +10 -8
- package/src/build-components/OnboardDot/OnboardDotProps.generated.ts +3 -3
- package/src/build-components/OnboardDot/pattern.json +13 -12
- package/src/build-components/OnboardFooter/OnboardFooter.tsx +4 -9
- package/src/build-components/OnboardFooter/pattern.json +14 -16
- package/src/build-components/patterns.generated.ts +52 -52
- package/src/modals/MockableFeatureModal.tsx +552 -5
- package/src/modals/Modal.tsx +7 -1
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ Use ONLY these component names and attribute names. Do NOT invent new components
|
|
|
7
7
|
|
|
8
8
|
Union enum values must match exactly (e.g. `"expanding_dot"` not `expandingDot`).
|
|
9
9
|
Color values: prefer `THEME_COLORS.KEY` or `STATIC_COLORS.KEY` for theme-aware colors. Literal values like `"red"` or `"#000fff"` are also valid when a specific color is intended.
|
|
10
|
-
Localization string values should use a localization key
|
|
10
|
+
Localization string values should use a localization key from the **Available Localization Keys** section. Do NOT invent new keys.
|
|
11
11
|
|
|
12
12
|
```
|
|
13
13
|
{patterns}
|
|
@@ -31,6 +31,39 @@ Use one of these values for `iconType` attributes:
|
|
|
31
31
|
- Use a short unique slug for `key` when the component needs one.
|
|
32
32
|
- Only use components appropriate for a {screen_type} screen.
|
|
33
33
|
|
|
34
|
+
## Embla Carousel Constraints
|
|
35
|
+
|
|
36
|
+
> **IMPORTANT – Web uses Embla carousel under the hood.**
|
|
37
|
+
> For `OnboardProvider` and `OnboardItem`, do **NOT** set any of the following outer layout styles via `styles`, because Embla manages them internally through its own CSS classes (`embla`, `embla__viewport`, `embla__slide`):
|
|
38
|
+
>
|
|
39
|
+
> `flex`, `flexGrow`, `flexShrink`, `margin`, `marginTop`, `marginBottom`, `marginLeft`, `marginRight`, `marginHorizontal`, `marginVertical`, `height`, `minHeight`, `maxHeight`, `width`, `minWidth`, `maxWidth`, `position`, `top`, `bottom`, `left`, `right`, `zIndex`, `display`
|
|
40
|
+
>
|
|
41
|
+
> Only **visual** styles are safe to set on `OnboardProvider` and `OnboardItem`:
|
|
42
|
+
> `padding`, `paddingTop`, `paddingBottom`, `paddingLeft`, `paddingRight`, `paddingHorizontal`, `paddingVertical`, `backgroundColor`, `borderRadius`, `gap`, `alignItems`, `justifyContent`, `flexDirection`, `flexWrap`
|
|
43
|
+
|
|
44
|
+
## Available Localization Keys
|
|
45
|
+
|
|
46
|
+
Use ONLY the keys listed below for localization attributes (`labelKey`, `textLocalizationKey`, etc.).
|
|
47
|
+
Do NOT invent new keys or use keys not in this list.
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
{localization_keys}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Default Colors
|
|
54
|
+
|
|
55
|
+
Reference color tokens already defined in the project. Prefer these over hard-coded hex values.
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
{default_colors}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Default Localization (en)
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
{default_localization_en}
|
|
65
|
+
```
|
|
66
|
+
|
|
34
67
|
## Reference Example
|
|
35
68
|
|
|
36
69
|
A complete, valid {screen_type} XML:
|
|
@@ -27,6 +27,40 @@ const ASSETS_ROOT = path.join(SRC_ROOT, 'assets');
|
|
|
27
27
|
const SAMPLES_ROOT = path.join(ASSETS_ROOT, 'samples');
|
|
28
28
|
const TEMPLATE_PATH = path.join(__dirname, 'assets', 'prompt_scheme.md');
|
|
29
29
|
|
|
30
|
+
/* ------------------------------------------------------------------ */
|
|
31
|
+
/* 0. Inline minified sample validator */
|
|
32
|
+
/* ------------------------------------------------------------------ */
|
|
33
|
+
|
|
34
|
+
// Validates a sample JSON root node tree. Throws with a descriptive message
|
|
35
|
+
// if the structure is invalid. This is intentionally kept as a self-contained
|
|
36
|
+
// function (uglified style) so it can be audited quickly.
|
|
37
|
+
// prettier-ignore
|
|
38
|
+
const validateSampleJson = (function(){
|
|
39
|
+
function v(n,p){
|
|
40
|
+
if(n===null||n===undefined)return;
|
|
41
|
+
const t=typeof n;
|
|
42
|
+
if(t==='string')return; // text node OK
|
|
43
|
+
if(Array.isArray(n)){n.forEach(function(c,i){v(c,p+'['+i+']');});return;}
|
|
44
|
+
if(t!=='object')throw new Error('validateSampleJson: expected object|string|array at '+p+', got '+t);
|
|
45
|
+
if(typeof n.type!=='string')throw new Error('validateSampleJson: missing string "type" at '+p);
|
|
46
|
+
if(n.attributes!==undefined&&n.attributes!==null&&typeof n.attributes!=='object')
|
|
47
|
+
throw new Error('validateSampleJson: "attributes" must be an object at '+p+'.'+n.type);
|
|
48
|
+
if(n.children!==undefined&&n.children!==null){
|
|
49
|
+
const ct=typeof n.children;
|
|
50
|
+
if(ct!=='string'&&ct!=='object')
|
|
51
|
+
throw new Error('validateSampleJson: "children" must be string|Node|Node[] at '+p+'.'+n.type);
|
|
52
|
+
v(n.children,p+'.'+n.type+'.children');
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return function(sample){
|
|
56
|
+
if(typeof sample!=='object'||sample===null)
|
|
57
|
+
throw new Error('validateSampleJson: root sample must be an object');
|
|
58
|
+
if(typeof sample.data!=='object'||sample.data===null)
|
|
59
|
+
throw new Error('validateSampleJson: sample must have a "data" object field');
|
|
60
|
+
v(sample.data,'root');
|
|
61
|
+
};
|
|
62
|
+
}());
|
|
63
|
+
|
|
30
64
|
/* ------------------------------------------------------------------ */
|
|
31
65
|
/* 1. JSON → XML converter (Node.js-safe, no DOMParser) */
|
|
32
66
|
/* ------------------------------------------------------------------ */
|
|
@@ -152,7 +186,7 @@ function parsePropsFile(filePath, componentName) {
|
|
|
152
186
|
const siMatch = styleInterfaceRe.exec(src);
|
|
153
187
|
const styleProps = [];
|
|
154
188
|
if (siMatch) {
|
|
155
|
-
const stylePropRe = /^\s+(\w+)
|
|
189
|
+
const stylePropRe = /^\s+(\w+)\??\s*:\s*(.+?);/gm;
|
|
156
190
|
let sm;
|
|
157
191
|
while ((sm = stylePropRe.exec(siMatch[1])) !== null) {
|
|
158
192
|
const propName = sm[1];
|
|
@@ -165,7 +199,7 @@ function parsePropsFile(filePath, componentName) {
|
|
|
165
199
|
|
|
166
200
|
// ── Parse non-style attributes ──────────────────────────────────
|
|
167
201
|
const nonStyleAttrs = [];
|
|
168
|
-
const attrPropRe = /^\s+(\w+)
|
|
202
|
+
const attrPropRe = /^\s+(\w+)\??\s*:\s*(.+?);/gm;
|
|
169
203
|
let ap;
|
|
170
204
|
while ((ap = attrPropRe.exec(attrBlock)) !== null) {
|
|
171
205
|
const propName = ap[1];
|
|
@@ -255,7 +289,7 @@ function collectIcons() {
|
|
|
255
289
|
// Match all keys of ICON_SVGS: both bare words and quoted strings
|
|
256
290
|
// activity:
|
|
257
291
|
// 'activity-heart':
|
|
258
|
-
const keyRe = /^\s+(?:'([^']+)'|(\w[\w-]*)?)\s*:/gm;
|
|
292
|
+
const keyRe = /^\s+(?:'([^']+)'|(\w[\w-]*)?)\ s*:/gm;
|
|
259
293
|
const keys = [];
|
|
260
294
|
let m;
|
|
261
295
|
while ((m = keyRe.exec(src)) !== null) {
|
|
@@ -270,7 +304,101 @@ function collectIcons() {
|
|
|
270
304
|
}
|
|
271
305
|
|
|
272
306
|
/* ------------------------------------------------------------------ */
|
|
273
|
-
/* 5.
|
|
307
|
+
/* 5. Collect localization keys from PreviewConfig.ts */
|
|
308
|
+
/* ------------------------------------------------------------------ */
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* Reads defaultLocalization from PreviewConfig.ts and returns:
|
|
312
|
+
* - localizationKeys: sorted list of all unique keys (for the "Available Keys" section)
|
|
313
|
+
* - defaultLocalizationEn: the English localization as a formatted block
|
|
314
|
+
* - defaultColors: the defaultProjectColors formatted
|
|
315
|
+
*/
|
|
316
|
+
function collectLocalizationAndColors() {
|
|
317
|
+
// ── defaultLocalization keys from PreviewConfig.ts ───────────────
|
|
318
|
+
const previewConfigPath = path.join(SRC_ROOT, 'types', 'PreviewConfig.ts');
|
|
319
|
+
const previewConfigSrc = fs.readFileSync(previewConfigPath, 'utf8');
|
|
320
|
+
|
|
321
|
+
// Extract all string literal keys from the LocalizationKey type union
|
|
322
|
+
const locKeyTypeRe = /export\s+type\s+LocalizationKey\s*=[\s\S]*?(?=export\s|$)/;
|
|
323
|
+
const locKeyTypeMatch = locKeyTypeRe.exec(previewConfigSrc);
|
|
324
|
+
const localizationKeys = [];
|
|
325
|
+
if (locKeyTypeMatch) {
|
|
326
|
+
const keyRe = /'\s*([^'()+]+?)\s*'/g;
|
|
327
|
+
let km;
|
|
328
|
+
while ((km = keyRe.exec(locKeyTypeMatch[0])) !== null) {
|
|
329
|
+
const key = km[1].trim();
|
|
330
|
+
if (key && !key.includes(' ') && key !== 'string') {
|
|
331
|
+
localizationKeys.push(key);
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
// ── Default localization (en) values ────────────────────────────
|
|
337
|
+
// Extract the `en` block from defaultLocalization
|
|
338
|
+
const enBlockRe = /en\s*:\s*\{([\s\S]*?)\},?\s*(?:tr\s*:|};)/;
|
|
339
|
+
const enBlockMatch = enBlockRe.exec(previewConfigSrc);
|
|
340
|
+
const enLines = [];
|
|
341
|
+
if (enBlockMatch) {
|
|
342
|
+
const entryRe = /'([^']+)'\s*:\s*'([^']*)'/g;
|
|
343
|
+
let em;
|
|
344
|
+
while ((em = entryRe.exec(enBlockMatch[1])) !== null) {
|
|
345
|
+
enLines.push(` "${em[1]}": "${em[2]}"`);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
const defaultLocalizationEn = `{\n${enLines.join(',\n')}\n}`;
|
|
349
|
+
|
|
350
|
+
// ── defaultProjectColors ────────────────────────────────────────
|
|
351
|
+
const projectColorsPath = path.join(SRC_ROOT, 'utils', 'projectColors.ts');
|
|
352
|
+
const projectColorsSrc = fs.readFileSync(projectColorsPath, 'utf8');
|
|
353
|
+
|
|
354
|
+
// Parse STATIC_COLORS block
|
|
355
|
+
const staticRe = /STATIC_COLORS\s*:\s*\{([\s\S]*?)\},?\s*THEME_COLORS/;
|
|
356
|
+
const staticMatch = staticRe.exec(projectColorsSrc);
|
|
357
|
+
const staticLines = [];
|
|
358
|
+
if (staticMatch) {
|
|
359
|
+
const entryRe = /(\w+)\s*:\s*'([^']*)'/g;
|
|
360
|
+
let sm;
|
|
361
|
+
while ((sm = entryRe.exec(staticMatch[1])) !== null) {
|
|
362
|
+
staticLines.push(` STATIC_COLORS.${sm[1]}: "${sm[2]}"`);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
// Parse THEME_COLORS light block
|
|
367
|
+
const lightRe = /light\s*:\s*\{([\s\S]*?)\},?\s*dark/;
|
|
368
|
+
const lightMatch = lightRe.exec(projectColorsSrc);
|
|
369
|
+
const lightLines = [];
|
|
370
|
+
if (lightMatch) {
|
|
371
|
+
const entryRe = /(\w+)\s*:\s*'([^']*)'/g;
|
|
372
|
+
let lm;
|
|
373
|
+
while ((lm = entryRe.exec(lightMatch[1])) !== null) {
|
|
374
|
+
lightLines.push(` THEME_COLORS.${lm[1]} (light): "${lm[2]}"`);
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// Parse THEME_COLORS dark block
|
|
379
|
+
const darkRe = /dark\s*:\s*\{([\s\S]*?)\},?\s*\}/;
|
|
380
|
+
const darkMatch = darkRe.exec(projectColorsSrc);
|
|
381
|
+
const darkLines = [];
|
|
382
|
+
if (darkMatch) {
|
|
383
|
+
const entryRe = /(\w+)\s*:\s*'([^']*)'/g;
|
|
384
|
+
let dm;
|
|
385
|
+
while ((dm = entryRe.exec(darkMatch[1])) !== null) {
|
|
386
|
+
darkLines.push(` THEME_COLORS.${dm[1]} (dark): "${dm[2]}"`);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
const defaultColors =
|
|
391
|
+
[...staticLines, ...lightLines, ...darkLines].join('\n');
|
|
392
|
+
|
|
393
|
+
return {
|
|
394
|
+
localizationKeys: localizationKeys.join('\n'),
|
|
395
|
+
defaultLocalizationEn,
|
|
396
|
+
defaultColors,
|
|
397
|
+
};
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
/* ------------------------------------------------------------------ */
|
|
401
|
+
/* 6. Generate a .generated.ts asset file */
|
|
274
402
|
/* ------------------------------------------------------------------ */
|
|
275
403
|
|
|
276
404
|
function generateAsset(schemeType, sampleJsonPath, outputPath) {
|
|
@@ -280,19 +408,27 @@ function generateAsset(schemeType, sampleJsonPath, outputPath) {
|
|
|
280
408
|
// Load patterns
|
|
281
409
|
const patterns = collectPatterns();
|
|
282
410
|
|
|
283
|
-
// Load sample JSON and convert to XML
|
|
411
|
+
// Load sample JSON, validate it, and convert to XML
|
|
284
412
|
const sampleJson = JSON.parse(fs.readFileSync(sampleJsonPath, 'utf8'));
|
|
413
|
+
validateSampleJson(sampleJson);
|
|
285
414
|
const exampleXml = nodeToXml(sampleJson.data);
|
|
286
415
|
|
|
287
416
|
// Load icon list
|
|
288
417
|
const icons = collectIcons();
|
|
289
418
|
|
|
419
|
+
// Collect localization keys, default colors and default localization
|
|
420
|
+
const { localizationKeys, defaultLocalizationEn, defaultColors } =
|
|
421
|
+
collectLocalizationAndColors();
|
|
422
|
+
|
|
290
423
|
// Fill template — replace ALL occurrences of {screen_type}
|
|
291
424
|
const filled = template
|
|
292
425
|
.replaceAll('{screen_type}', schemeType)
|
|
293
426
|
.replace('{patterns}', patterns)
|
|
294
427
|
.replace('{icons}', icons)
|
|
295
|
-
.replace('{example}', exampleXml)
|
|
428
|
+
.replace('{example}', exampleXml)
|
|
429
|
+
.replace('{localization_keys}', localizationKeys)
|
|
430
|
+
.replace('{default_colors}', defaultColors)
|
|
431
|
+
.replace('{default_localization_en}', defaultLocalizationEn);
|
|
296
432
|
|
|
297
433
|
// Write as a TypeScript string export
|
|
298
434
|
const tsContent = `/* AUTO-GENERATED FILE - DO NOT EDIT */
|
|
@@ -308,7 +444,7 @@ export const ${schemeType}PromptScheme: string = ${JSON.stringify(filled)};
|
|
|
308
444
|
}
|
|
309
445
|
|
|
310
446
|
/* ------------------------------------------------------------------ */
|
|
311
|
-
/*
|
|
447
|
+
/* 7. Main */
|
|
312
448
|
/* ------------------------------------------------------------------ */
|
|
313
449
|
|
|
314
450
|
export async function generatePromptSchemes() {
|
package/src/assets/meta.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/* AUTO-GENERATED FILE - DO NOT EDIT */
|
|
2
2
|
/* Prompt scheme for onboard screens. Generated by generate-prompt-schemes.js */
|
|
3
3
|
|
|
4
|
-
export const onboardPromptScheme: string = "You are a React Native UI builder assistant. Your goal is to generate a valid **onboard** screen node tree in XML format.\n\n## Available Components & Their Props\n\nEach component is listed as `ComponentName: {attr: TypeScriptType, styles: {prop: TypeScriptType}}`.\nUse ONLY these component names and attribute names. Do NOT invent new components or attributes.\n\nUnion enum values must match exactly (e.g. `\"expanding_dot\"` not `expandingDot`).\nColor values: prefer `THEME_COLORS.KEY` or `STATIC_COLORS.KEY` for theme-aware colors. Literal values like `\"red\"` or `\"#000fff\"` are also valid when a specific color is intended.\nLocalization string values should use a localization key like `\"screen.section.label\"`.\n\n```\nBIcon:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,iconType:string,size:number,strokeWidth:number,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nBackgroundImage:{scrollable:boolean,src:string,resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\",styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nButton:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,color:string,fontSize:string,fontWeight:\"normal\"|\"bold\"|\"100\"|\"200\"|\"300\"|\"400\"|\"500\"|\"600\"|\"700\"|\"800\"|\"900\"}}\nCarousel:{scrollable:boolean,loop:boolean,dragFree:boolean,align:\"start\"|\"center\"|\"end\",styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselButtons:{scrollable:boolean,buttonType:\"previous_button\"|\"next_button\"|\"skip_button\",skipNumber:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselDots:{scrollable:boolean,dotType:\"expanding_dot\"|\"normal_dot\"|\"scaling_dot\"|\"sliding_border\"|\"sliding_dot\"|\"liquid_like\",dot_thickness:string,inactive_dot_opacity:number,inactive_dot_color:string,active_dot_color:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselItem:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselProvider:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCountDown:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,count:number,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:obj,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,textAlign:obj}}\nImage:{scrollable:boolean,src:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\"}}\nMain:{scrollable:boolean,useSafeAreaView:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nNavigationBarColor:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboard:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardButton:{scrollable:boolean,labelKey:string,animation:\"simple-animation\"|\"line-animation\"|\"blur\"|\"blur-animation\"|\"blur-line-animation\",animation_color:string,events:[obj],styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,color:string}}\nOnboardButtons:{scrollable:boolean,buttonType:\"previous_button\"|\"next_button\"|\"skip_button\",skipNumber:number,buttons_direction:\"row\"|\"column\",forIndex:number,seperatorColor:string,condition:\"carousel-index\",conditionVariable:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardDot:{scrollable:boolean,dotType:\"expanding_dot\"|\"normal_dot\"|\"scaling_dot\"|\"sliding_border\"|\"sliding_dot\"|\"liquid_like\",dot_thickness:string,inactive_dot_opacity:number,inactive_dot_color:string,active_dot_color:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardFooter:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,textLocalizationKey:string,linkedWordFirstLocalizationKey:string,linkedWordFirstColor:string,linkedWordFirstPage:string,linkedWordSecondLocalizationKey:string,linkedWordSecondColor:string,linkedWordSecondPage:string,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardImage:{src:string,scrollable:boolean,video_url:string,lottie:string,styles:{resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\",flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardItem:{scrollable:boolean,display:\"flex\"|\"block\",gap:string,flexDirection:\"row\"|\"column\",paddingHorizontal:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardProvider:{scrollable:boolean,theme:\"light\"|\"dark\"|\"all\",styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardSubtitle:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardTitle:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallBackground:{src:string,resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\",scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallCloseButton:{iconType:string,size:number,strokeWidth:number,adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallOptions:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallProvider:{scrollable:boolean,delay:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallSubscribeButton:{scrollable:boolean,styles:{color:string,fontSize:string,fontWeight:\"normal\"|\"bold\"|\"100\"|\"200\"|\"300\"|\"400\"|\"500\"|\"600\"|\"700\"|\"800\"|\"900\",flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPriceTag:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,showOriginalPricePossible:boolean,hideIfItsNotDiscount:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,textDecorationLine:\"none\"|\"underline\"|\"line-through\"}}\nPricing:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPromo:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nRadioButton:{scrollable:boolean,selected:boolean,color:string,size:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nSeparator:{styles:{backgroundColor:string,width:string,height:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string}}\nStatusBarColor:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nText:{scrollable:boolean,adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,color:string,fontSize:string,fontFamily:string,fontWeight:string}}\nView:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\n```\n\n## Available Icons\n\nUse one of these values for `iconType` attributes:\n\n```\nactivity, activity-heart, alert-circle, alert-triangle, anchor, archive, arrow-down, arrow-left, arrow-narrow-down-left, arrow-narrow-up-right, arrow-right, arrow-right-smooth, asterisk-01, asterisk-02, at-sign, award, battery-charging, bell-01, bell-02, bell-ringing-02, bookmark, bookmark-add, bookmark-check, bookmark-minus, bookmark-x, bubble, building-01, building-02, building-03, building-04, building-05, building-06, building-07, building-08, building-09, camera, camera-01, camera-steel, check, check-circle, check-circle-bold, check-circle-broken, check-done-01, check-done-02, check-heart, check-square, check-square-broken, check-verified-01, check-verified-02, check-verified-03, checkbox, checkv, chevron-down, chevron-down2, chevron-left, chevron-left-2, chevron-right, chevron-right-empty, chevron-right-smooth, chevron-up, circle, clock, clock-fast-forward, close, close-circle, cloud-01, cloud-blank-01, cloud-blank-02, coin, coins-02, colors, copy-01, copy-02, copy-03, copy-04, copy-05, copy-06, copy-07, corner-down-right, crypto-bold, delete-icon, diamond, dice-3, display, divide-01, divide-02, divide-03, document-check-bold, dots-circle, dots-grid, dots-horizontal, dots-vertical, download-01, download-02, download-03, edit-03, edit-04, edit-05, element-3, ellipse-127, exclaimation-circle, eye-off-line, face-smile, file-04, file-05, file-check-02, file-plus-01, file-shield-02, filter-funnel-01, flag-03, flash, folder, folder-plus, gallery, globe-01, globe-04, globe-bold, guard, headphones-01, headphones-02, headset-bold, heart, heart-bold, help-circle, home-2, home-line, hourglass-02, iconType, image, image-01, image-03, inbox-01, inbox-arrow-down, info-circle, keyboard-line, lamp-charge, layer, light, like-dislike, lineHeight, lock-03, logout, magicpen, mail, mail-01, marker, medal-star, menu, menu-04, message-circle-01, message-plus-circle, message-question-circle, message-text-circle-01, message-text-square-02, message-x-square, microphone-02, microphone-slash, mirror, moon-01, moon-bold, mouse-circle, move, notification, notification-fill, notification-text, pdf-01, pencil-01, phone, phone-01, phone-arrow-down-left, phone-arrow-up-right, phone-hang-up, phone-hangup2, phone-incoming-01, phone-outgoing-01, phone-plus, phone-x, plus, plus-circle, printer, question-mark-circle, refresh-ccw-01, refresh-cw-01, refresh-cw-04, refresh-right-square-bold, remove-circle, repeat-04, repeat-bold, ruler-pen, search, search-lg, search-md, search-refraction, send-01, send-02, send-diagonal, setting-2, settings, settings-02, settings-04, settings-2, settings-cog, share-01, share-03, share-04, share-05, share-06, share-bold, shield-01, shield-bold, solar-check, speaker, speaker-wave, speedometer-03, star, star-rounded, sun, target-03, text-input, translate, trash, trash-02, trash-03, trash-04, trush-square-bold, unlimited, user-circle, user-jogging, user-plus-01, user-square, user-x-01, user-x-02, user2, users-02, users-speaker, verify, voice-cricle, x-circle, x-close, x-sm, zap\n```\n\n## XML Rules\n\n- Root element must always be `<Main isMain=\"true\">`.\n- Text content (children) goes as element body text, not as an attribute.\n- `styles` value must be a JSON object string (escape inner quotes): `styles=\"{"flex":1,"color":"THEME_COLORS.TEXT"}\"`.\n- `events` value must be a JSON array string.\n- Omit any attribute that has no value — no nulls, no empty strings.\n- Use a short unique slug for `key` when the component needs one.\n- Only use components appropriate for a onboard screen.\n\n## Reference Example\n\nA complete, valid onboard XML:\n\n```xml\n<Main key=\"c92tR8J5wbTb3fav\" isMain=\"true\" useSafeAreaView=\"true\" description=\"Ekranın ana kapsayıcısı. (#1)\" title=\"Main 1\" styles='{\"paddingBottom\":16}'>\n <StatusBarColor title=\"Status Bar Color\" description=\"Status bar background color.\" styles='{\"backgroundColor\":\"THEME_COLORS.BACKGROUND\"}' />\n <NavigationBarColor title=\"Navigation Bar Color\" description=\"Navigation bar background color.\" styles='{\"backgroundColor\":\"THEME_COLORS.BACKGROUND\"}' />\n <OnboardProvider theme=\"dark\" description=\"Onboarding sağlayıcısı. (#1)\" title=\"OnboardProvider 1\">\n <Onboard description=\"Onboarding ana yapısı. (#1)\" title=\"Onboard 1\" styles='{\"flex\":1}'>\n <OnboardItem key=\"app_onboard-page1\" description=\"Onboarding sayfası. (#1)\" title=\"OnboardItem 1\">\n <OnboardTitle description=\"Sayfa başlığı. (#1)\" title=\"OnboardTitle 1\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.one-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/6c89e0da17a2d6fe2997e97a2b8a00a1.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#1)\" title=\"OnboardSubtitle 1\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.one-page\n </OnboardSubtitle>\n </OnboardItem>\n <OnboardItem key=\"app_onboard-page2\" description=\"Onboarding sayfası. (#2)\" title=\"OnboardItem 2\">\n <OnboardTitle description=\"Sayfa başlığı. (#2)\" title=\"OnboardTitle 2\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.two-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/497a627b30ab4a0daaafa3d648a26b07.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#2)\" title=\"OnboardSubtitle 2\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.two-page\n </OnboardSubtitle>\n </OnboardItem>\n <OnboardItem key=\"app_onboard-page3\" description=\"Onboarding sayfası. (#3)\" title=\"OnboardItem 3\">\n <OnboardTitle description=\"Sayfa başlığı. (#3)\" title=\"OnboardTitle 3\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.three-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/6e2bc370d38695f6845007fd302034c2.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#3)\" title=\"OnboardSubtitle 3\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.three-page\n </OnboardSubtitle>\n </OnboardItem>\n <OnboardItem key=\"app_onboard-page4\" description=\"Onboarding sayfası. (#4)\" title=\"OnboardItem 4\">\n <OnboardTitle description=\"Sayfa başlığı. (#4)\" title=\"OnboardTitle 4\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.four-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/b6e978fe3362e857212163486c22cc7c.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#4)\" title=\"OnboardSubtitle 4\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.four-page\n </OnboardSubtitle>\n </OnboardItem>\n </Onboard>\n <OnboardDot dotType=\"expanding_dot\" dot_thickness=\"20\" inactive_dot_opacity=\"0.3\" inactive_dot_color=\"STATIC_COLORS.ONBOARD_DOT_INACTIVE\" active_dot_color=\"STATIC_COLORS.ONBOARD_DOT_ACTIVE\" styles='{\"paddingVertical\":12}' />\n <Separator title=\"Separator\" description=\"Horizontal separator line\" styles='{\"width\":\"100%\",\"height\":2,\"backgroundColor\":\"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR\"}' />\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"0\" description=\"Sayfa buton grubu. (#1)\" title=\"OnboardButtons 1\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.skip.one-page\" events='[{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT\",\"backgroundColor\":\"STATIC_COLORS.TRANSPARENT\"}' />\n <OnboardButton labelKey=\"onboard.next.one-page\" events='[{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":1}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"1\" description=\"Sayfa buton grubu. (#2)\" title=\"OnboardButtons 2\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.skip.two-page\" events='[{\"type\":\"Permission\",\"permission\":\"att\"},{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT\",\"backgroundColor\":\"STATIC_COLORS.TRANSPARENT\"}' />\n <OnboardButton labelKey=\"onboard.next.two-page\" events='[{\"type\":\"Permission\",\"permission\":\"att\"},{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":2}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"2\" description=\"Sayfa buton grubu. (#3)\" title=\"OnboardButtons 3\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.skip.three-page\" events='[{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT\",\"backgroundColor\":\"STATIC_COLORS.TRANSPARENT\"}' />\n <OnboardButton labelKey=\"onboard.next.three-page\" events='[{\"type\":\"Permission\",\"permission\":\"rating\"},{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"3\" description=\"Sayfa buton grubu. (#4)\" title=\"OnboardButtons 4\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.allow.four-page\" events='[{\"type\":\"Permission\",\"permission\":\"notification\"},{\"type\":\"Navigate\",\"navigate_to\":\"home\"}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <View title=\"Onboard Footer Wrap\" description=\"Wrapper for OnboardFooter component\" styles='{\"marginHorizontal\":25,\"flexShrink\":0}'>\n <OnboardFooter textLocalizationKey=\"view.onboarding.footer.description\" linkedWordFirstLocalizationKey=\"view.onboarding.btnPrivacy\" linkedWordFirstColor=\"STATIC_COLORS.ONBOARD_LINK_COLOR\" linkedWordFirstPage=\"privacy\" linkedWordSecondLocalizationKey=\"view.onboarding.btnTerms\" linkedWordSecondColor=\"STATIC_COLORS.ONBOARD_LINK_COLOR\" linkedWordSecondPage=\"terms\" styles='{\"gap\":8,\"color\":\"THEME_COLORS.ONBOARD_FOOTER_TEXT\"}' />\n </View>\n </OnboardProvider>\n</Main>\n```\n\n## Task\n\nGenerate a node tree XML for the user's request below. Output ONLY raw XML — no markdown fences, no explanation.\n";
|
|
4
|
+
export const onboardPromptScheme: string = "You are a React Native UI builder assistant. Your goal is to generate a valid **onboard** screen node tree in XML format.\n\n## Available Components & Their Props\n\nEach component is listed as `ComponentName: {attr: TypeScriptType, styles: {prop: TypeScriptType}}`.\nUse ONLY these component names and attribute names. Do NOT invent new components or attributes.\n\nUnion enum values must match exactly (e.g. `\"expanding_dot\"` not `expandingDot`).\nColor values: prefer `THEME_COLORS.KEY` or `STATIC_COLORS.KEY` for theme-aware colors. Literal values like `\"red\"` or `\"#000fff\"` are also valid when a specific color is intended.\nLocalization string values should use a localization key from the **Available Localization Keys** section. Do NOT invent new keys.\n\n```\nBIcon:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,iconType:string,size:number,strokeWidth:number,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nBackgroundImage:{scrollable:boolean,src:string,resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\",styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nButton:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,color:string,fontSize:string,fontWeight:\"normal\"|\"bold\"|\"100\"|\"200\"|\"300\"|\"400\"|\"500\"|\"600\"|\"700\"|\"800\"|\"900\"}}\nCarousel:{scrollable:boolean,loop:boolean,dragFree:boolean,align:\"start\"|\"center\"|\"end\",styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselButtons:{scrollable:boolean,buttonType:\"previous_button\"|\"next_button\"|\"skip_button\",skipNumber:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselDots:{scrollable:boolean,dotType:\"expanding_dot\"|\"normal_dot\"|\"scaling_dot\"|\"sliding_border\"|\"sliding_dot\"|\"liquid_like\",dot_thickness:string,inactive_dot_opacity:number,inactive_dot_color:string,active_dot_color:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselItem:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCarouselProvider:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nCountDown:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,count:number,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:obj,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,textAlign:obj}}\nImage:{scrollable:boolean,src:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\"}}\nMain:{scrollable:boolean,useSafeAreaView:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nNavigationBarColor:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboard:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardButton:{scrollable:boolean,labelKey:string,animation:\"simple-animation\"|\"line-animation\"|\"blur\"|\"blur-animation\"|\"blur-line-animation\",animation_color:string,events:[obj],styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,color:string}}\nOnboardButtons:{scrollable:boolean,buttonType:\"previous_button\"|\"next_button\"|\"skip_button\",skipNumber:number,buttons_direction:\"row\"|\"column\",forIndex:number,seperatorColor:string,condition:\"carousel-index\",conditionVariable:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardDot:{scrollable:boolean,dotType:\"expanding_dot\"|\"normal_dot\"|\"scaling_dot\"|\"sliding_border\"|\"sliding_dot\"|\"liquid_like\",dot_thickness:string,inactive_dot_opacity:number,inactive_dot_color:string,active_dot_color:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardFooter:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,textLocalizationKey:string,linkedWordFirstLocalizationKey:string,linkedWordFirstColor:string,linkedWordFirstPage:string,linkedWordSecondLocalizationKey:string,linkedWordSecondColor:string,linkedWordSecondPage:string,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardImage:{src:string,scrollable:boolean,video_url:string,lottie:string,styles:{resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\",flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardItem:{scrollable:boolean,display:\"flex\"|\"block\",gap:string,flexDirection:\"row\"|\"column\",paddingHorizontal:string,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardProvider:{scrollable:boolean,theme:\"light\"|\"dark\"|\"all\",styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardSubtitle:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nOnboardTitle:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallBackground:{src:string,resizeMode:\"cover\"|\"contain\"|\"stretch\"|\"center\",scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallCloseButton:{iconType:string,size:number,strokeWidth:number,adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallOptions:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallProvider:{scrollable:boolean,delay:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPaywallSubscribeButton:{scrollable:boolean,styles:{color:string,fontSize:string,fontWeight:\"normal\"|\"bold\"|\"100\"|\"200\"|\"300\"|\"400\"|\"500\"|\"600\"|\"700\"|\"800\"|\"900\",flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPriceTag:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,showOriginalPricePossible:boolean,hideIfItsNotDiscount:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,textDecorationLine:\"none\"|\"underline\"|\"line-through\"}}\nPricing:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nPromo:{adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,scrollable:boolean,styles:{color:string,fontSize:string,fontFamily:string,fontWeight:string,flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nRadioButton:{scrollable:boolean,selected:boolean,color:string,size:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nSeparator:{styles:{backgroundColor:string,width:string,height:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string}}\nStatusBarColor:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\nText:{scrollable:boolean,adjustsFontSizeToFit:boolean,showEllipsis:boolean,translateCounter:number,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number,color:string,fontSize:string,fontFamily:string,fontWeight:string}}\nView:{scrollable:boolean,styles:{flexDirection:\"row\"|\"column\",flexWrap:\"nowrap\"|\"wrap\"|\"wrap-reverse\",alignItems:\"flex-start\"|\"center\"|\"flex-end\"|\"stretch\"|\"baseline\",justifyContent:\"flex-start\"|\"center\"|\"flex-end\"|\"space-between\"|\"space-around\"|\"space-evenly\",gap:string,padding:string,paddingHorizontal:string,paddingVertical:string,paddingTop:string,paddingBottom:string,paddingLeft:string,paddingRight:string,margin:string,marginHorizontal:string,marginVertical:string,marginTop:string,marginBottom:string,marginLeft:string,marginRight:string,backgroundColor:string,borderRadius:string,width:string,minWidth:string,maxWidth:string,height:string,minHeight:string,maxHeight:string,flex:number,position:\"relative\"|\"absolute\",top:string,bottom:string,left:string,right:string,zIndex:number}}\n```\n\n## Available Icons\n\nUse one of these values for `iconType` attributes:\n\n```\n\n```\n\n## XML Rules\n\n- Root element must always be `<Main isMain=\"true\">`.\n- Text content (children) goes as element body text, not as an attribute.\n- `styles` value must be a JSON object string (escape inner quotes): `styles=\"{"flex":1,"color":"THEME_COLORS.TEXT"}\"`.\n- `events` value must be a JSON array string.\n- Omit any attribute that has no value — no nulls, no empty strings.\n- Use a short unique slug for `key` when the component needs one.\n- Only use components appropriate for a onboard screen.\n\n## Embla Carousel Constraints\n\n> **IMPORTANT – Web uses Embla carousel under the hood.**\n> For `OnboardProvider` and `OnboardItem`, do **NOT** set any of the following outer layout styles via `styles`, because Embla manages them internally through its own CSS classes (`embla`, `embla__viewport`, `embla__slide`):\n>\n> `flex`, `flexGrow`, `flexShrink`, `margin`, `marginTop`, `marginBottom`, `marginLeft`, `marginRight`, `marginHorizontal`, `marginVertical`, `height`, `minHeight`, `maxHeight`, `width`, `minWidth`, `maxWidth`, `position`, `top`, `bottom`, `left`, `right`, `zIndex`, `display`\n>\n> Only **visual** styles are safe to set on `OnboardProvider` and `OnboardItem`:\n> `padding`, `paddingTop`, `paddingBottom`, `paddingLeft`, `paddingRight`, `paddingHorizontal`, `paddingVertical`, `backgroundColor`, `borderRadius`, `gap`, `alignItems`, `justifyContent`, `flexDirection`, `flexWrap`\n\n## Available Localization Keys\n\nUse ONLY the keys listed below for localization attributes (`labelKey`, `textLocalizationKey`, etc.).\nDo NOT invent new keys or use keys not in this list.\n\n```\nbase.builder.paywall.period.monthly\nbase.builder.paywall.period.annual\nbase.builder.paywall.period.weekly\nbase.builder.paywall.period.daily\nbase.builder.paywall.period.monthlyPromo\nbase.builder.paywall.period.annualPromo\nbase.builder.paywall.pricing.default.text\nbase.builder.paywall.pricing.freeTrial.text\nbase.builder.paywall.pricing.regular.text\nbase.builder.paywall.promo.default.text\nbase.builder.paywall.promo.freeTrial.text\nbase.builder.paywall.promo.regular.text\nonboard.title.one-page\nonboard.title.two-page\nonboard.title.three-page\nonboard.title.four-page\nonboard.title.one-page2\nonboard.title.two-page2\nonboard.title.three-page2\nonboard.title.four-page2\nonboard.subtitle.one-page\nonboard.subtitle.two-page\nonboard.subtitle.three-page\nonboard.subtitle.four-page\nonboard.subtitle.one-page2\nonboard.subtitle.two-page2\nonboard.subtitle.three-page2\nonboard.subtitle.four-page2\nonboard.next.one-page\nonboard.next.two-page\nonboard.next.three-page\nonboard.skip.one-page\nonboard.skip.two-page\nonboard.skip.three-page\nonboard.allow.four-page\nview.onboarding.footer.description\nview.onboarding.btnPrivacy\nview.onboarding.btnTerms\n```\n\n## Default Colors\n\nReference color tokens already defined in the project. Prefer these over hard-coded hex values.\n\n```\n STATIC_COLORS.BLACK: \"#000\"\n STATIC_COLORS.WHITE: \"#FFFFFF\"\n STATIC_COLORS.TRANSPARENT: \"#ffffff00\"\n STATIC_COLORS.ONBOARD_DOT_INACTIVE: \"#E4E5E7\"\n STATIC_COLORS.ONBOARD_DOT_ACTIVE: \"#007AFF\"\n STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND: \"#0066FF\"\n STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_TEXT: \"#FFFFFF\"\n STATIC_COLORS.ONBOARD_LINK_COLOR: \"#1778F2\"\n STATIC_COLORS.ONBOARD_SEPARATOR_COLOR: \"#44454D\"\n STATIC_COLORS.RADIO_BUTTON_COLOR: \"#A6A6A6\"\n THEME_COLORS.TEXT (light): \"#161827\"\n THEME_COLORS.BACKGROUND (light): \"#F4F5FF\"\n THEME_COLORS.ICON (light): \"#0450E2\"\n THEME_COLORS.LINE (light): \"#E9EBF9\"\n THEME_COLORS.ONBOARD_TITLE (light): \"#161827\"\n THEME_COLORS.ONBOARD_SUBTITLE (light): \"#44454D\"\n THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT (light): \"#81838F\"\n THEME_COLORS.ONBOARD_FOOTER_TEXT (light): \"#81838F\"\n THEME_COLORS.TEXT (dark): \"#E9EBF9\"\n THEME_COLORS.BACKGROUND (dark): \"#080A17\"\n THEME_COLORS.ICON (dark): \"#0450E2\"\n THEME_COLORS.LINE (dark): \"#161827\"\n THEME_COLORS.ONBOARD_TITLE (dark): \"#FDFDFD\"\n THEME_COLORS.ONBOARD_SUBTITLE (dark): \"#C7C7C7\"\n THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT (dark): \"#A9AAAC\"\n THEME_COLORS.ONBOARD_FOOTER_TEXT (dark): \"#A2A4B1\"\n```\n\n## Default Localization (en)\n\n```\n{\n \"base.builder.paywall.period.monthly\": \"per month\",\n \"base.builder.paywall.period.annual\": \"per year\",\n \"base.builder.paywall.period.weekly\": \"per week\",\n \"base.builder.paywall.period.daily\": \"per day\",\n \"base.builder.paywall.period.monthlyPromo\": \"per month\",\n \"base.builder.paywall.period.annualPromo\": \"per year\",\n \"base.builder.paywall.pricing.default.text\": \"@promoPrice for the first @promoPeriod, then @localizedPrice @localizedPeriod\",\n \"base.builder.paywall.pricing.freeTrial.text\": \"@trialPeriod-@trialPeriodUnit free trial, then @localizedPrice @localizedPeriod\",\n \"base.builder.paywall.pricing.regular.text\": \"@localizedPrice @localizedPeriod\",\n \"base.builder.paywall.promo.default.text\": \"Save @discountPercentage%!\",\n \"base.builder.paywall.promo.freeTrial.text\": \"@trialPeriod-@trialPeriodUnit free trial\",\n \"base.builder.paywall.promo.regular.text\": \"@localizedPrice @localizedPeriod\",\n \"onboard.title.one-page\": \"Secure your connection\",\n \"onboard.title.two-page\": \"Access content worldwide\",\n \"onboard.title.three-page\": \"Fast and reliable\",\n \"onboard.title.four-page\": \"Stay notified and safe\",\n \"onboard.title.one-page2\": \"Secure your connection\",\n \"onboard.title.two-page2\": \"Access content worldwide\",\n \"onboard.title.three-page2\": \"Fast and reliable\",\n \"onboard.title.four-page2\": \"Stay notified and safe\",\n \"onboard.subtitle.one-page\": \"Encrypt your traffic and protect your privacy on public Wi\\u2011Fi.\",\n \"onboard.subtitle.two-page\": \"Connect to high\\u2011speed servers in many countries with one tap.\",\n \"onboard.subtitle.three-page\": \"Auto\\u2011connect to the best server for speed and stability.\",\n \"onboard.subtitle.four-page\": \"Enable notifications for connection status and security tips.\",\n \"onboard.subtitle.one-page2\": \"Encrypt your traffic and protect your privacy on public Wi\\u2011Fi.\",\n \"onboard.subtitle.two-page2\": \"Connect to high\\u2011speed servers in many countries with one tap.\",\n \"onboard.subtitle.three-page2\": \"Auto\\u2011connect to the best server for speed and stability.\",\n \"onboard.subtitle.four-page2\": \"Enable notifications for connection status and security tips.\",\n \"onboard.next.one-page\": \"Next\",\n \"onboard.next.two-page\": \"Next\",\n \"onboard.next.three-page\": \"Next\",\n \"onboard.skip.one-page\": \"Skip\",\n \"onboard.skip.two-page\": \"Skip\",\n \"onboard.skip.three-page\": \"Skip\",\n \"onboard.allow.four-page\": \"Allow\",\n \"view.onboarding.footer.description\": \"By clicking continue, you will be accepting the Terms of service and privacy policy\",\n \"view.onboarding.btnPrivacy\": \"Privacy Policy\",\n \"view.onboarding.btnTerms\": \"Terms of Service\"\n}\n```\n\n## Reference Example\n\nA complete, valid onboard XML:\n\n```xml\n<Main key=\"c92tR8J5wbTb3fav\" isMain=\"true\" useSafeAreaView=\"true\" description=\"Ekranın ana kapsayıcısı. (#1)\" title=\"Main 1\" styles='{\"paddingBottom\":16}'>\n <StatusBarColor title=\"Status Bar Color\" description=\"Status bar background color.\" styles='{\"backgroundColor\":\"THEME_COLORS.BACKGROUND\"}' />\n <NavigationBarColor title=\"Navigation Bar Color\" description=\"Navigation bar background color.\" styles='{\"backgroundColor\":\"THEME_COLORS.BACKGROUND\"}' />\n <OnboardProvider theme=\"dark\" description=\"Onboarding sağlayıcısı. (#1)\" title=\"OnboardProvider 1\">\n <Onboard description=\"Onboarding ana yapısı. (#1)\" title=\"Onboard 1\" styles='{\"flex\":1}'>\n <OnboardItem key=\"app_onboard-page1\" description=\"Onboarding sayfası. (#1)\" title=\"OnboardItem 1\">\n <OnboardTitle description=\"Sayfa başlığı. (#1)\" title=\"OnboardTitle 1\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.one-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/6c89e0da17a2d6fe2997e97a2b8a00a1.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#1)\" title=\"OnboardSubtitle 1\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.one-page\n </OnboardSubtitle>\n </OnboardItem>\n <OnboardItem key=\"app_onboard-page2\" description=\"Onboarding sayfası. (#2)\" title=\"OnboardItem 2\">\n <OnboardTitle description=\"Sayfa başlığı. (#2)\" title=\"OnboardTitle 2\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.two-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/497a627b30ab4a0daaafa3d648a26b07.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#2)\" title=\"OnboardSubtitle 2\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.two-page\n </OnboardSubtitle>\n </OnboardItem>\n <OnboardItem key=\"app_onboard-page3\" description=\"Onboarding sayfası. (#3)\" title=\"OnboardItem 3\">\n <OnboardTitle description=\"Sayfa başlığı. (#3)\" title=\"OnboardTitle 3\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.three-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/6e2bc370d38695f6845007fd302034c2.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#3)\" title=\"OnboardSubtitle 3\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.three-page\n </OnboardSubtitle>\n </OnboardItem>\n <OnboardItem key=\"app_onboard-page4\" description=\"Onboarding sayfası. (#4)\" title=\"OnboardItem 4\">\n <OnboardTitle description=\"Sayfa başlığı. (#4)\" title=\"OnboardTitle 4\" styles='{\"color\":\"THEME_COLORS.ONBOARD_TITLE\",\"textAlign\":\"center\",\"marginTop\":40}'>\n onboard.title.four-page\n </OnboardTitle>\n <OnboardImage src=\"https://textcall-dev.s3.amazonaws.com/onboard/high/b6e978fe3362e857212163486c22cc7c.png\" resizeMode=\"contain\" styles='{\"height\":350}' />\n <OnboardSubtitle description=\"Sayfa alt başlığı. (#4)\" title=\"OnboardSubtitle 4\" styles='{\"color\":\"THEME_COLORS.ONBOARD_SUBTITLE\",\"fontSize\":16,\"textAlign\":\"center\"}'>\n onboard.subtitle.four-page\n </OnboardSubtitle>\n </OnboardItem>\n </Onboard>\n <OnboardDot dotType=\"expanding_dot\" dot_thickness=\"20\" inactive_dot_opacity=\"0.3\" inactive_dot_color=\"STATIC_COLORS.ONBOARD_DOT_INACTIVE\" active_dot_color=\"STATIC_COLORS.ONBOARD_DOT_ACTIVE\" styles='{\"paddingVertical\":12}' />\n <Separator title=\"Separator\" description=\"Horizontal separator line\" styles='{\"width\":\"100%\",\"height\":2,\"backgroundColor\":\"STATIC_COLORS.ONBOARD_SEPARATOR_COLOR\"}' />\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"0\" description=\"Sayfa buton grubu. (#1)\" title=\"OnboardButtons 1\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.skip.one-page\" events='[{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT\",\"backgroundColor\":\"STATIC_COLORS.TRANSPARENT\"}' />\n <OnboardButton labelKey=\"onboard.next.one-page\" events='[{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":1}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"1\" description=\"Sayfa buton grubu. (#2)\" title=\"OnboardButtons 2\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.skip.two-page\" events='[{\"type\":\"Permission\",\"permission\":\"att\"},{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT\",\"backgroundColor\":\"STATIC_COLORS.TRANSPARENT\"}' />\n <OnboardButton labelKey=\"onboard.next.two-page\" events='[{\"type\":\"Permission\",\"permission\":\"att\"},{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":2}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"2\" description=\"Sayfa buton grubu. (#3)\" title=\"OnboardButtons 3\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.skip.three-page\" events='[{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"THEME_COLORS.ONBOARD_BUTTON_SECONDARY_TEXT\",\"backgroundColor\":\"STATIC_COLORS.TRANSPARENT\"}' />\n <OnboardButton labelKey=\"onboard.next.three-page\" events='[{\"type\":\"Permission\",\"permission\":\"rating\"},{\"type\":\"Navigate\",\"navigate_to\":null,\"targetIndex\":3}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <OnboardButtons buttons_direction=\"row\" condition=\"carousel-index\" conditionVariable=\"3\" description=\"Sayfa buton grubu. (#4)\" title=\"OnboardButtons 4\" styles='{\"height\":40,\"marginVertical\":12,\"flexShrink\":0}'>\n <OnboardButton labelKey=\"onboard.allow.four-page\" events='[{\"type\":\"Permission\",\"permission\":\"notification\"},{\"type\":\"Navigate\",\"navigate_to\":\"home\"}]' styles='{\"flex\":1,\"color\":\"STATIC_COLORS.WHITE\",\"backgroundColor\":\"STATIC_COLORS.ONBOARD_BUTTON_PRIMARY_BACKGROUND\"}' />\n </OnboardButtons>\n <View title=\"Onboard Footer Wrap\" description=\"Wrapper for OnboardFooter component\" styles='{\"marginHorizontal\":25,\"flexShrink\":0}'>\n <OnboardFooter textLocalizationKey=\"view.onboarding.footer.description\" linkedWordFirstLocalizationKey=\"view.onboarding.btnPrivacy\" linkedWordFirstColor=\"STATIC_COLORS.ONBOARD_LINK_COLOR\" linkedWordFirstPage=\"privacy\" linkedWordSecondLocalizationKey=\"view.onboarding.btnTerms\" linkedWordSecondColor=\"STATIC_COLORS.ONBOARD_LINK_COLOR\" linkedWordSecondPage=\"terms\" styles='{\"gap\":8,\"color\":\"THEME_COLORS.ONBOARD_FOOTER_TEXT\"}' />\n </View>\n </OnboardProvider>\n</Main>\n```\n\n## Task\n\nGenerate a node tree XML for the user's request below. Output ONLY raw XML — no markdown fences, no explanation.\n";
|