-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathappexamples.json
9940 lines (9939 loc) · 313 KB
/
appexamples.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"categories": {
"controls": {
"id": "controls",
"name": "Controls",
"description": "Buttons, sliders, checkboxes, text input and more...",
"icon": "preview-assets/categories/category-controls.png"
},
"dialogs-native-widgets": {
"id": "dialogs-native-widgets",
"name": "Dialogs & Native Widgets",
"description": "Display dialogs and access native device features.",
"icon": "preview-assets/categories/category-dialogs-native-widgets.png"
},
"native-code-components": {
"id": "native-code-components",
"name": "Native Code Components",
"description": "Embed native views and work with native objects.",
"icon": "preview-assets/categories/category-native-code-components.png"
},
"styling-theming": {
"id": "styling-theming",
"name": "Styling & Theming",
"description": "Change global styles of your app, also at runtime.",
"icon": "preview-assets/categories/category-styling-theming.png"
},
"pages-layout": {
"id": "pages-layout",
"name": "Pages & Layout",
"description": "Base components for pages to display and layout content.",
"icon": "preview-assets/categories/category-pages-layout.png"
},
"navigation": {
"id": "navigation",
"name": "Navigation & Menus",
"description": "Visual and functional components for routing and navigation in your app.",
"icon": "preview-assets/categories/category-navigation.png"
},
"lists-model-view": {
"id": "lists-model-view",
"name": "Lists & Model/View",
"description": "Manage, prepare and display data.",
"icon": "preview-assets/categories/category-lists-model-view.png"
},
"gesture-touch-click": {
"id": "gesture-touch-click",
"name": "Gesture, Touch & Click",
"description": "Handle touch and mouse input from the user.",
"icon": "preview-assets/categories/category-gesture-touch-click.png"
},
"multimedia-camera": {
"id": "multimedia-camera",
"name": "Multimedia & Camera",
"description": "Display videos, use the camera and scan QR codes.",
"icon": "preview-assets/categories/category-multimedia-camera.png"
},
"animations": {
"id": "animations",
"name": "Animations",
"description": "Create smooth animation, from simple to complex, easily.",
"icon": "preview-assets/categories/category-animations.png"
},
"store-access-data-files": {
"id": "store-access-data-files",
"name": "Store & Access Data and Files",
"description": "Use databases, open and store files and PDFs.",
"icon": "preview-assets/categories/category-store-access-data-files.png"
},
"networking-connectivity-rest": {
"id": "networking-connectivity-rest",
"name": "Networking, Connectivity & REST",
"description": "Connect to servers or other devices and transfer data.",
"icon": "preview-assets/categories/category-networking-connectivity-rest.png"
},
"threads-timers": {
"id": "threads-timers",
"name": "Threads & Timers",
"description": "Threads, Multithreading, Timers, delayed code execution, handlers at a specified interval.",
"icon": "preview-assets/categories/category-threads-timers.png"
},
"location-maps": {
"id": "location-maps",
"name": "Location & Maps",
"description": "Use maps and location services.",
"icon": "preview-assets/categories/category-location-maps.png"
},
"charts": {
"id": "charts",
"name": "Charts",
"description": "Display data with various charts.",
"icon": "preview-assets/categories/category-charts.png"
},
"sensors": {
"id": "sensors",
"name": "Sensors",
"description": "Use native device sensors, like gyroscope or GPS.",
"icon": "preview-assets/categories/category-sensors.png"
},
"monetization": {
"id": "monetization",
"name": "Monetization",
"description": "Ads and in-app purchases.",
"icon": "preview-assets/categories/category-monetization.png"
},
"analytics-telemetry": {
"id": "analytics-telemetry",
"name": "Analytics and Telemetry",
"description": "Analyze user behavior and observe app functionality.",
"icon": "preview-assets/categories/category-analytics-telemetry.png"
},
"firebase-cloud-backend": {
"id": "firebase-cloud-backend",
"name": "Firebase Cloud Backend",
"description": "Connect your app with Google Firebase services.",
"icon": "preview-assets/categories/category-firebase-cloud-backend.png"
},
"push-notifications": {
"id": "push-notifications",
"name": "Push Notifications",
"description": "Trigger remote and local push notifications.",
"icon": "preview-assets/categories/category-push-notifications.png"
},
"social-gamification": {
"id": "social-gamification",
"name": "Social & Gamification",
"description": "Authenticate, connect and engage your users.",
"icon": "preview-assets/categories/category-social-gamification.png"
},
"ar": {
"id": "ar",
"name": "Augmented Reality (AR)",
"description": "Add Augmented Reality to your app.",
"icon": "preview-assets/categories/category-ar.png"
}
},
"components": {
"appactivityindicator": {
"id": "appactivityindicator",
"title": "AppActivityIndicator",
"categories": [
"controls"
],
"label": "Intermediate spinning progress indicator",
"description": "A convenient way of communicating that a task is in progress.",
"icon": "preview-assets/appexamples/components/appactivityindicator/icon.png",
"docLink": "https://felgo.com/doc/felgo-appactivityindicator/",
"qtComponent": false
},
"appbutton": {
"id": "appbutton",
"title": "AppButton",
"categories": [
"controls"
],
"label": "Button",
"description": "A button thats reacts to user clicks.",
"icon": "preview-assets/appexamples/components/appbutton/icon.png",
"docLink": "https://felgo.com/doc/felgo-appbutton",
"qtComponent": false
},
"appcard": {
"id": "appcard",
"title": "AppCard",
"categories": [
"controls"
],
"label": "Card",
"description": "A material style card.",
"icon": "preview-assets/appexamples/components/appcard/icon.png",
"docLink": "https://felgo.com/doc/felgo-appcard",
"qtComponent": false
},
"appcardswipearea": {
"id": "appcardswipearea",
"title": "AppCardSwipeArea",
"categories": [
"controls"
],
"label": "Card Swipe Area",
"description": "Adds Tinder-like swipe feature to a component.",
"icon": "preview-assets/appexamples/components/appcardswipearea/icon.png",
"docLink": "https://felgo.com/doc/felgo-appcardswipearea",
"qtComponent": false
},
"appcheckbox": {
"id": "appcheckbox",
"title": "AppCheckBox",
"categories": [
"controls"
],
"label": "CheckBox",
"description": "A checkbox with a platform-specific styling for iOS and Android.",
"icon": "preview-assets/appexamples/components/appcheckbox/icon.png",
"docLink": "https://felgo.com/doc/felgo-appcheckbox",
"qtComponent": false
},
"appimage": {
"id": "appimage",
"title": "AppImage",
"categories": [
"controls"
],
"label": "Image",
"description": "An image with a default source.",
"icon": "preview-assets/appexamples/components/appimage/icon.png",
"docLink": "https://felgo.com/doc/felgo-appimage",
"qtComponent": false
},
"apppaper": {
"id": "apppaper",
"title": "AppPaper",
"categories": [
"controls"
],
"label": "Paper",
"description": "A sheet of paper with shadow.",
"icon": "preview-assets/appexamples/components/apppaper/icon.png",
"docLink": "https://felgo.com/doc/felgo-apppaper",
"qtComponent": false
},
"appradio": {
"id": "appradio",
"title": "AppRadio",
"categories": [
"controls"
],
"label": "AppRadio",
"description": "A radiobox with a platform-specific styling.",
"icon": "preview-assets/appexamples/components/appradio/icon.png",
"docLink": "https://felgo.com/doc/felgo-appradio",
"qtComponent": false
},
"apprangeslider": {
"id": "apprangeslider",
"title": "Range Slider",
"categories": [
"controls"
],
"label": "AppRangeSlider",
"description": "A slider control with two handles to set a range.",
"icon": "preview-assets/appexamples/components/apprangeslider/icon.png",
"docLink": "https://felgo.com/doc/felgo-apprangeslider",
"qtComponent": false
},
"applesignin": {
"id": "applesignin",
"title": "AppleSignIn",
"runnable": [
"ios"
],
"categories": [
"social-gamification"
],
"label": "AppleSignIn",
"description": "A component that handles sign-in with Apple ID.",
"icon": "preview-assets/appexamples/components/applesignin/icon.png",
"docLink": "https://felgo.com/doc/felgo-applesignin",
"qtComponent": false
},
"applesigninbutton": {
"id": "applesigninbutton",
"title": "AppleSignInButton",
"categories": [
"social-gamification"
],
"label": "AppleSignInButton",
"description": "A button that handles sign-in with Apple ID.",
"icon": "preview-assets/appexamples/components/applesignin/icon.png",
"docLink": "https://felgo.com/doc/felgo-applesigninbutton",
"qtComponent": false
},
"appslider": {
"id": "appslider",
"title": "AppSlider",
"categories": [
"controls"
],
"label": "AppSlider",
"description": "A slider control with one handle.",
"icon": "preview-assets/appexamples/components/appslider/icon.png",
"docLink": "https://felgo.com/doc/felgo-appslider",
"qtComponent": false
},
"appswitch": {
"id": "appswitch",
"title": "AppSwitch",
"categories": [
"controls"
],
"label": "AppSwitch",
"description": "An on/off button-like control.",
"icon": "preview-assets/appexamples/components/appswitch/icon.png",
"docLink": "https://felgo.com/doc/felgo-appswitch",
"qtComponent": false
},
"apptabbar": {
"id": "apptabbar",
"title": "AppTabBar",
"categories": [
"controls"
],
"label": "TabBar",
"description": "A tab bar with Theme-based iOS and Android styles. ",
"icon": "preview-assets/appexamples/components/apptabbar/icon.png",
"docLink": "https://felgo.com/doc/felgo-apptabbar",
"qtComponent": false
},
"apptext": {
"id": "apptext",
"title": "AppText",
"categories": [
"controls"
],
"label": "AppText",
"description": "A styled text control.",
"icon": "preview-assets/appexamples/components/apptext/icon.png",
"docLink": "https://felgo.com/doc/felgo-apptext",
"qtComponent": false
},
"apptextedit": {
"id": "apptextedit",
"title": "AppTextEdit",
"categories": [
"controls"
],
"label": "Text Edit",
"description": "A multi-line TextEdit with a given placeholder text.",
"icon": "preview-assets/appexamples/components/apptextedit/icon.png",
"docLink": "https://felgo.com/doc/felgo-apptextedit",
"qtComponent": false
},
"apptextfield": {
"id": "apptextfield",
"title": "AppTextField",
"categories": [
"controls"
],
"label": "Text Field",
"description": "A single-line TextField input control.",
"icon": "preview-assets/appexamples/components/apptextfield/icon.png",
"docLink": "https://felgo.com/doc/felgo-apptextfield",
"qtComponent": false
},
"apptooltip": {
"id": "apptooltip",
"title": "AppToolTip",
"categories": [
"controls"
],
"label": "A tool tip overlay for a target item",
"description": "displays a tool tip bubble for a specified target QML item.",
"icon": "preview-assets/appexamples/components/apptooltip/icon.png",
"docLink": "https://felgo.com/doc/felgo-apptooltip",
"qtComponent": false
},
"datepicker": {
"id": "datepicker",
"title": "DatePicker",
"categories": [
"controls"
],
"label": "Date Picker",
"description": "Allows to pick a date, time or interval with flickable QML tumblers.",
"icon": "preview-assets/appexamples/components/datepicker/icon.png",
"docLink": "https://felgo.com/doc/felgo-datepicker",
"qtComponent": false
},
"floatingactionbutton": {
"id": "floatingactionbutton",
"title": "FloatingActionButton",
"categories": [
"controls"
],
"label": "Floating Action Button",
"description": "A material-design styled floating action button.",
"icon": "preview-assets/appexamples/components/floatingactionbutton/icon.png",
"docLink": "https://felgo.com/doc/felgo-floatingactionbutton",
"qtComponent": false
},
"icon": {
"id": "icon",
"title": "Icon",
"categories": [
"controls"
],
"label": "Icon",
"description": "An item for displaying icons from an icon font.",
"icon": "preview-assets/appexamples/components/icon/icon.png",
"docLink": "https://felgo.com/doc/felgo-appicon",
"qtComponent": false
},
"iconbutton": {
"id": "iconbutton",
"title": "IconButton",
"categories": [
"controls"
],
"label": "Icon Button",
"description": "A button with an icon as visual representation.",
"icon": "preview-assets/appexamples/components/iconbutton/icon.png",
"docLink": "https://felgo.com/doc/felgo-iconbutton",
"qtComponent": false
},
"imagepicker": {
"id": "imagepicker",
"title": "ImagePicker",
"categories": [
"controls"
],
"label": "Image Picker",
"description": "A GridView to show and select multiple photos from the device.",
"icon": "preview-assets/appexamples/components/imagepicker/icon.png",
"docLink": "https://felgo.com/doc/felgo-imagepicker",
"qtComponent": false
},
"pagecontrol": {
"id": "pagecontrol",
"title": "PageControl",
"categories": [
"controls"
],
"label": "Page Control",
"description": "Displays page indicators and allows switching to the previous or next page.",
"icon": "preview-assets/appexamples/components/pagecontrol/icon.png",
"docLink": "https://felgo.com/doc/felgo-pagecontrol",
"qtComponent": false
},
"pictureviewer": {
"id": "pictureviewer",
"title": "PictureViewer",
"categories": [
"controls"
],
"label": "Picture Viewer",
"description": "A modal, full-screen picture viewer component.",
"icon": "preview-assets/appexamples/components/pictureviewer/icon.png",
"docLink": "https://felgo.com/doc/felgo-pictureviewer",
"qtComponent": false
},
"roundedimage": {
"id": "roundedimage",
"title": "RoundedImage",
"categories": [
"controls"
],
"label": "Rounded Image",
"description": "An image item with rounded corners and an optional border.",
"icon": "preview-assets/appexamples/components/roundedimage/icon.png",
"docLink": "https://felgo.com/doc/felgo-roundedimage",
"qtComponent": false
},
"searchbar": {
"id": "searchbar",
"title": "SearchBar",
"categories": [
"controls"
],
"label": "Search Bar",
"description": "A search bar with native styling for iOS and Android based on the Theme settings.",
"icon": "preview-assets/appexamples/components/searchbar/icon.png",
"docLink": "https://felgo.com/doc/felgo-searchbar",
"qtComponent": false
},
"combobox": {
"id": "combobox",
"title": "ComboBox",
"categories": [
"controls"
],
"label": "ComboBox",
"description": "Combined button and popup list for selecting options.",
"icon": "preview-assets/appexamples/components/combobox/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-controls2-combobox",
"qtComponent": true
},
"dial": {
"id": "dial",
"title": "Dial",
"categories": [
"controls"
],
"label": "Dial",
"description": "Circular dial that is rotated to set a value.",
"icon": "preview-assets/appexamples/components/dial/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-controls2-dial",
"qtComponent": true
},
"flipable": {
"id": "flipable",
"title": "Flipable",
"categories": [
"controls"
],
"label": "Flipable",
"description": "Provides a surface that can be flipped.",
"icon": "preview-assets/appexamples/components/flipable/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-flipable",
"qtComponent": true
},
"radiobutton": {
"id": "radiobutton",
"title": "RadioButton",
"categories": [
"controls"
],
"label": "Radio Button",
"description": "Exclusive radio button that can be toggled on or off.",
"icon": "preview-assets/appexamples/components/radiobutton/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-controls2-radiobutton",
"qtComponent": true
},
"spinbox": {
"id": "spinbox",
"title": "SpinBox",
"categories": [
"controls"
],
"label": "Spin Box",
"description": "Allows the user to select from a set of preset values.",
"icon": "preview-assets/appexamples/components/spinbox/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-controls2-spinbox",
"qtComponent": true
},
"tumbler": {
"id": "tumbler",
"title": "Tumbler",
"categories": [
"controls"
],
"label": "Tumbler",
"description": "Spinnable wheel of items that can be selected.",
"icon": "preview-assets/appexamples/components/tumbler/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-controls2-tumbler",
"qtComponent": true
},
"webview": {
"id": "webview",
"title": "WebView",
"categories": [
"controls"
],
"label": "WebView",
"description": "A component for displaying web content",
"icon": "preview-assets/appexamples/components/webview/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtwebview-webview",
"qtComponent": true
},
"nativeutils": {
"id": "nativeutils",
"title": "NativeUtils",
"categories": [
"dialogs-native-widgets",
"networking-connectivity-rest"
],
"label": "Native Utils",
"description": "The nativeUtils context property allows opening native message boxes, input dialogs and browsers.",
"icon": "preview-assets/appexamples/components/nativeutils/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils",
"qtComponent": false
},
"speechtotext": {
"id": "speechtotext",
"title": "SpeechToText",
"categories": [
"dialogs-native-widgets"
],
"label": "Speech to Text",
"description": "The SpeechToText singleton allows to convert recorded spoken audio into text.",
"icon": "preview-assets/appexamples/components/nativeutils/icon.png",
"docLink": "https://felgo.com/doc/felgo-speechtotext",
"qtComponent": false
},
"zeroconf": {
"id": "zeroconf",
"title": "Bonjour/ZeroConf",
"categories": [
"networking-connectivity-rest"
],
"label": "Bonjour/ZeroConf",
"description": "The ZeroConf singleton allows to disover local network services via Bonjour/ZeroConf.",
"icon": "preview-assets/appexamples/components/nativeutils/icon.png",
"docLink": "https://felgo.com/doc/felgo-zeroconf",
"qtComponent": false
},
"appmodal": {
"id": "appmodal",
"title": "AppModal",
"categories": [
"dialogs-native-widgets"
],
"label": "Modal",
"description": "A modal dialog that covers the whole application.",
"icon": "preview-assets/appexamples/components/appmodal/icon.png",
"docLink": "https://felgo.com/doc/felgo-appmodal",
"qtComponent": false
},
"appoverlay": {
"id": "appoverlay",
"title": "AppOverlay",
"categories": [
"dialogs-native-widgets"
],
"label": "AppOverlay",
"description": "Display a QML item as a fullscreen overlay.",
"icon": "preview-assets/appexamples/components/appoverlay/icon.png",
"docLink": "https://felgo.com/doc/felgo-appoverlay",
"qtComponent": false
},
"dialog": {
"id": "dialog",
"title": "Dialog",
"categories": [
"dialogs-native-widgets"
],
"label": "Dialog",
"description": "A dialog with custom content and one or two buttons.",
"icon": "preview-assets/appexamples/components/dialog/icon.png",
"docLink": "https://felgo.com/doc/felgo-dialog",
"qtComponent": false
},
"inputdialog": {
"id": "inputdialog",
"title": "Input Dialog",
"categories": [
"dialogs-native-widgets"
],
"label": "InputDialog",
"description": "Global object for displaying standard user interaction dialogs.",
"icon": "preview-assets/appexamples/components/inputdialog/icon.png",
"docLink": "https://felgo.com/doc/felgo-inputdialog",
"qtComponent": false
},
"nativeclass": {
"id": "nativeclass",
"title": "NativeClass",
"categories": [
"native-code-components"
],
"label": "Native Class",
"description": "Represents a platform-native class.",
"icon": "preview-assets/appexamples/components/native-components/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeclass",
"qtComponent": false
},
"nativeobject": {
"id": "nativeobject",
"title": "NativeObject",
"categories": [
"native-code-components"
],
"label": "Native Object",
"description": "Represents a platform-native object.",
"icon": "preview-assets/appexamples/components/native-components/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeobject",
"qtComponent": false
},
"nativeobjectutils": {
"id": "nativeobjectutils",
"title": "NativeObjectUtils",
"categories": [
"native-code-components"
],
"label": "Native Object Utils",
"description": "Allows to retrieve native objects of mobile platforms.",
"icon": "preview-assets/appexamples/components/native-components/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeobjectutils",
"qtComponent": false
},
"nativeview": {
"id": "nativeview",
"title": "NativeView",
"categories": [
"native-code-components"
],
"label": "Native View",
"description": "Allows to instantiate platform-specific views and widgets.",
"icon": "preview-assets/appexamples/components/native-components/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeview",
"qtComponent": false
},
"nativeviewbinding": {
"id": "nativeviewbinding",
"title": "NativeViewBinding",
"categories": [
"native-code-components"
],
"label": "Native View Binding",
"description": "Defines a platform-specific implementation for native views.",
"icon": "preview-assets/appexamples/components/native-components/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeviewbinding",
"qtComponent": false
},
"contacts": {
"id": "contacts",
"title": "contacts",
"categories": [
"dialogs-native-widgets"
],
"label": "Contacts",
"description": "Contains a list of all contacts including name and all phone numbers per contact. This property is only supported on Android and iOS.",
"icon": "preview-assets/appexamples/components/contacts/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#contacts-prop",
"qtComponent": false
},
"displayalertdialog": {
"id": "displayalertdialog",
"title": "displayAlertDialog",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Alert Dialog",
"description": "Displays a native alert dialog with a given title, an optional description that can provide more details, an OK button and an optional Cancel button.",
"icon": "preview-assets/appexamples/components/displayalertdialog/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayAlertDialog-method",
"qtComponent": false
},
"displayalertsheet": {
"id": "displayalertsheet",
"title": "displayAlertSheet",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Alert Sheet",
"description": "Displays a modal alert sheet with the specific options. It uses an AlertDialog on Android and a UIActionSheet on iOS.",
"icon": "preview-assets/appexamples/components/displayalertsheet/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayAlertSheet-method",
"qtComponent": false
},
"displaycamerapicker": {
"id": "displaycamerapicker",
"title": "displayCameraPicker",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Camera Picker",
"description": "Allows to take a photo by starting the native camera, if available.",
"icon": "preview-assets/appexamples/components/displaycamerapicker/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayCameraPicker-method",
"qtComponent": false
},
"displaydatepicker": {
"id": "displaydatepicker",
"title": "displayDatePicker",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Date Picker",
"description": "Allows to choose a date from a calendar by displaying a native date picker dialog, if available.",
"icon": "preview-assets/appexamples/components/displaydatepicker/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayDatePicker-method",
"qtComponent": false
},
"displayimagepicker": {
"id": "displayimagepicker",
"title": "displayImagePicker",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Image Picker",
"description": "Allows to choose a photo from the device by displaying the native image picker, if available.",
"icon": "preview-assets/appexamples/components/displayimagepicker/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayImagePicker-method",
"qtComponent": false
},
"displaymessagebox": {
"id": "displaymessagebox",
"title": "displayMessageBox",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Message Box",
"description": "Displays a native-looking message box dialog with a given title, an optional description that can provide more details, an OK button and an optional Cancel button.",
"icon": "preview-assets/appexamples/components/displaymessagebox/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayMessageBox-method",
"qtComponent": false
},
"displaytextinput": {
"id": "displaytextinput",
"title": "displayTextInput",
"categories": [
"dialogs-native-widgets"
],
"label": "Display Text Input",
"description": "Displays a native-looking message input dialog with a given title, a description that can provide more details, a placeholder that is displayed as long as the input field is empty (optional) and a prefilled text.",
"icon": "preview-assets/appexamples/components/displaytextinput/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#displayTextInput-method",
"qtComponent": false
},
"openurl": {
"id": "openurl",
"title": "openUrl",
"categories": [
"dialogs-native-widgets"
],
"label": "Open Url",
"description": "Opens the URL string with the default application associated with the given URL protocol of the current platform.",
"icon": "preview-assets/appexamples/components/openurl/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#openUrl-method",
"qtComponent": false
},
"sendemail": {
"id": "sendemail",
"title": "sendEmail",
"categories": [
"dialogs-native-widgets"
],
"label": "Send Email",
"description": "Opens the native email app prefilled with the given to receiver, subject and message.",
"icon": "preview-assets/appexamples/components/sendemail/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#sendEmail-method",
"qtComponent": false
},
"share": {
"id": "share",
"title": "share",
"categories": [
"dialogs-native-widgets"
],
"label": "Share",
"description": "Opens the native share dialog with a given text and url.",
"icon": "preview-assets/appexamples/components/share/icon.png",
"docLink": "https://felgo.com/doc/felgo-nativeutils/#share-method",
"qtComponent": false
},
"page": {
"id": "page",
"title": "Page",
"categories": [
"pages-layout"
],
"label": "Page",
"description": "A single page within an application.",
"icon": "preview-assets/appexamples/components/page/icon.png",
"docLink": "https://felgo.com/doc/felgo-apppage",
"qtComponent": false
},
"flickablepage": {
"id": "flickablepage",
"title": "FlickablePage",
"categories": [
"pages-layout"
],
"label": "Flickable Page",
"description": "A Page with included AppFlickable and ScrollIndicator.",
"icon": "preview-assets/appexamples/components/flickablepage/icon.png",
"docLink": "https://felgo.com/doc/felgo-flickablepage",
"qtComponent": false
},
"listpage": {
"id": "listpage",
"title": "ListPage",
"categories": [
"pages-layout"
],
"label": "List Page",
"description": "A Page item with an AppListView as a single child.",
"icon": "preview-assets/appexamples/components/listpage/icon.png",
"docLink": "https://felgo.com/doc/felgo-listpage",
"qtComponent": false
},
"column": {
"id": "column",
"title": "Column",
"categories": [
"pages-layout"
],
"label": "Column",
"description": "Positions its children in a column.",
"icon": "preview-assets/appexamples/components/column/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-column",
"qtComponent": true
},
"row": {
"id": "row",
"title": "Row",
"categories": [
"pages-layout"
],
"label": "Row",
"description": "Positions its children in a row.",
"icon": "preview-assets/appexamples/components/row/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-row",
"qtComponent": true
},
"grid": {
"id": "grid",
"title": "Grid",
"categories": [
"pages-layout"
],
"label": "Grid",
"description": "Positions its children in grid formation.",
"icon": "preview-assets/appexamples/components/grid/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-grid",
"qtComponent": true
},
"flow": {
"id": "flow",
"title": "Flow",
"categories": [
"pages-layout"
],
"label": "Flow",
"description": "Positions its children side by side, wrapping as necessary.",
"icon": "preview-assets/appexamples/components/flow/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-flow",
"qtComponent": true
},
"repeater": {
"id": "repeater",
"title": "Repeater",
"categories": [
"pages-layout"
],
"label": "Repeater",
"description": "Instantiates a number of Item-based components using a provided model.",
"icon": "preview-assets/appexamples/components/repeater/icon.png",
"docLink": "https://felgo.com/doc/qt/qml-qtquick-repeater",
"qtComponent": true
},
"app": {
"id": "app",
"title": "App",
"categories": [
"navigation"
],
"label": "App",
"description": "The top-level component of a Felgo application containing all other components.",
"icon": "preview-assets/appexamples/components/app/icon.png",
"docLink": "https://felgo.com/doc/felgo-app",
"qtComponent": false
},
"activityindicatorbaritem": {
"id": "activityindicatorbaritem",
"title": "ActivityIndicatorBarItem",
"categories": [
"navigation"
],
"label": "Activity Indicator Bar Item",
"description": "Displays an AppActivityIndicator inside a NavigationBar slot.",
"icon": "preview-assets/appexamples/components/activityindicatorbaritem/icon.png",
"docLink": "https://felgo.com/doc/felgo-activityindicatorbaritem",
"qtComponent": false
},
"appdrawer": {
"id": "appdrawer",
"title": "AppDrawer",
"categories": [
"navigation"
],
"label": "App Drawer",
"description": "A drawer opened from the left or right edge of the screen with custom content.",
"icon": "preview-assets/appexamples/components/appdrawer/icon.png",
"docLink": "https://felgo.com/doc/felgo-appdrawer",
"qtComponent": false
},
"iconbuttonbaritem": {
"id": "iconbuttonbaritem",
"title": "IconButtonBarItem",
"categories": [
"navigation"
],
"label": "Icon Button Bar Item",
"description": "Displays a clickable Icon inside a NavigationBar slot.",
"icon": "preview-assets/appexamples/components/iconbuttonbaritem/icon.png",
"docLink": "https://felgo.com/doc/felgo-iconbuttonbaritem",
"qtComponent": false
},
"navigation": {
"id": "navigation",
"title": "Navigation",
"categories": [
"navigation"
],
"label": "Navigation",
"description": "A navigation control for using platform-specific navigation modes.",
"icon": "preview-assets/appexamples/components/navigation/icon.png",
"docLink": "https://felgo.com/doc/felgo-navigation",
"qtComponent": false
},
"navigationbar": {
"id": "navigationbar",
"title": "NavigationBar",
"categories": [
"navigation"
],
"label": "Navigation Bar",
"description": "A navigation control for displaying a header, back navigation and optional items.",
"icon": "preview-assets/appexamples/components/navigationbar/icon.png",
"docLink": "https://felgo.com/doc/felgo-navigationbar",
"qtComponent": false
},
"navigationbaritem": {
"id": "navigationbaritem",
"title": "NavigationBarItem",
"categories": [
"navigation"
],
"label": "Navigation Bar Item",