-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathappdemos.json
More file actions
1617 lines (1617 loc) · 54 KB
/
appdemos.json
File metadata and controls
1617 lines (1617 loc) · 54 KB
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,
"demos": {
"messenger": {
"id": "messenger",
"title": "Messenger App",
"shortTitle": "Messenger App",
"sourcePath": "appdemos/messenger",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "WhatsApp Messenger-like messaging app.",
"description": "<html>This demo shows how to create a WhatsApp Messenger-like messaging app.<br/><br/>The demo shows how to:<br/> ‣ Use Felgo navigation components to create a feature-rich messaging UI<br/> ‣ Use text input to send and receive messages</html>",
"overviewImage": "preview-assets/appdemos/messenger/overviewImage.png",
"genres": [
"Social"
],
"tags": [
"messenger",
"messaging",
"chat",
"social",
"sms"
],
"tagsAll": [
"messenger",
"messaging",
"chat",
"social",
"facebook",
"whatsapp",
"telegram",
"sms",
"business",
"communication",
"dating",
"entertainment",
"events",
"tools"
],
"usedComponents": [
"appbutton",
"apptextfield",
"jsonlistmodel",
"listpage",
"navigation"
],
"complexity": "Simple",
"order": 90,
"linesOfCode": 188,
"images": [
"preview-assets/appdemos/messenger/01-android.jpg",
"preview-assets/appdemos/messenger/01-ios.jpg",
"preview-assets/appdemos/messenger/02-android.jpg",
"preview-assets/appdemos/messenger/02-ios.jpg"
],
"main": "qml/MessengerMain.qml",
"cidePath": "-/ide/project/root/messenger/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/messenger/messenger.pro",
"folder": "examples/appdemos/messenger"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-messaging-example/"
},
"bluetooth-heartrate": {
"id": "bluetooth-heartrate",
"title": "Bluetooth LE Heartrate",
"shortTitle": "Bluetooth LE Heartrate",
"sourcePath": "appdemos/bluetooth-heartrate",
"runnable": [
"ios",
"android"
],
"shortDescription": "Heartrate monitor app using Bluetooth LE (BLE).",
"description": "<html>This demo shows how to use the Felgo Bluetooth LE components to connect to a heart rate sensor and display the result.</html>",
"overviewImage": "preview-assets/appdemos/bluetooth-heartrate/overviewImage.png",
"genres": [
"Fitness"
],
"tags": [
"bluetooth",
"ble",
"heartrate",
"fitness",
"wearables"
],
"tagsAll": [
"bluetooth",
"ble",
"heartrate",
"fitness",
"wearables"
],
"usedComponents": [
"appmodal",
"applistitem",
"bluetoothlecharacteristic",
"bluetoothledevice",
"bluetoothleservice",
"bluetoothlemanager"
],
"complexity": "Simple",
"order": 90,
"linesOfCode": 188,
"images": [
"preview-assets/appdemos/bluetooth-heartrate/01-android.jpg",
"preview-assets/appdemos/bluetooth-heartrate/01-ios.jpg",
"preview-assets/appdemos/bluetooth-heartrate/02-android.jpg",
"preview-assets/appdemos/bluetooth-heartrate/02-ios.jpg"
],
"main": "qml/Main.qml",
"cidePath": "-/ide/project/root/bluetooth-heartrate/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/bluetooth-heartrate/bluetooth-heartrate.pro",
"folder": "examples/appdemos/bluetooth-heartrate"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-bluetooth-heartrate-example/"
},
"coffee-machine": {
"id": "coffee-machine",
"title": "Coffee Machine Embedded UI App",
"shortTitle": "Coffee Machine UI App",
"sourcePath": "appdemos/coffee-machine",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Coffee Machine UI for embedded devices",
"description": "<html>This demo shows how to create a simple but beautiful touch interface for display on embedded devices.<br/><br/>The demo shows how to:<br/> ‣ Use Felgo controls on embedded targets<br/> ‣ Create fluid animations for embedded devices with optimized performance</html>",
"overviewImage": "preview-assets/appdemos/coffee-machine/overviewImage.png",
"genres": [
"Embedded"
],
"tags": [
"coffee",
"embedded",
"device",
"touch"
],
"tagsAll": [
"coffee-machine",
"food",
"drink",
"coffee",
"dashboard",
"embedded",
"design"
],
"usedComponents": [
"appslider",
"apptext",
"navigationstack",
"navigation",
"iconbutton",
"ripplemousearea"
],
"complexity": "Simple",
"order": 130,
"linesOfCode": 403,
"images": [
"preview-assets/appdemos/coffee-machine/01-android.jpg",
"preview-assets/appdemos/coffee-machine/01-ios.jpg",
"preview-assets/appdemos/coffee-machine/02-android.jpg",
"preview-assets/appdemos/coffee-machine/02-ios.jpg"
],
"main": "qml/CoffeeMachineMain.qml",
"cidePath": "-/ide/project/root/coffee-machine/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/coffee-machine/coffee-machine.pro",
"folder": "examples/appdemos/coffee-machine"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-coffee-machine-example/"
},
"map-features": {
"id": "map-features",
"title": "Map Features Showcase App",
"shortTitle": "Map Features Showcase App",
"sourcePath": "appdemos/map-features",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Map and location feature demo app",
"description": "<html>The demo shows how to add location and navigation features to an app.<br/><br/>The demo shows how to:<br/> ‣ Display maps using different providers<br/> ‣ Customize a map's appearance<br/> ‣ Navigate to and display the user position<br/> ‣ Geocode location basing on typed address<br/> ‣ Reverse geocode address from coordinates<br/> ‣ Display route on map</html>",
"overviewImage": "preview-assets/appdemos/map-features/overviewImage.png",
"genres": [
"Navigation"
],
"tags": [
"map",
"navigation",
"routing",
"positioning"
],
"tagsAll": [
"map",
"navigation",
"routing",
"positioning",
"uber",
"osm",
"mapbox",
"here",
"google",
"travel",
"showcase"
],
"usedComponents": [
"appactivityindicator",
"appmap",
"apppaper",
"appmodal",
"apptext",
"apptextfield",
"icon",
"listpage",
"navigation",
"searchbar",
"mapquickitem",
"plugin",
"pluginparameter"
],
"complexity": "Medium",
"order": 100,
"linesOfCode": 540,
"images": [
"preview-assets/appdemos/map-features/01-android.jpg",
"preview-assets/appdemos/map-features/01-ios.jpg",
"preview-assets/appdemos/map-features/02-android.jpg",
"preview-assets/appdemos/map-features/02-ios.jpg"
],
"main": "qml/MapFeaturesMain.qml",
"cidePath": "-/ide/project/root/map-features/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/map-features/map-features.pro",
"folder": "examples/appdemos/map-features"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-map-features-example/"
},
"todo-list": {
"id": "todo-list",
"title": "ToDo List App",
"shortTitle": "ToDo List App",
"sourcePath": "appdemos/todo-list",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "To-Do list & architecture best-practice app",
"description": "<html>The To-Do list demo works with a list of todos loaded from a REST API.<br/><br/>The demo shows how to:<br/> ‣ Build advanced interfaces with App Controls like AppListView and PullToRefreshHandler.<br/> ‣ Use JsonListModel and SortFilterProxyModel for sorting and filtering.<br/> ‣ Connect to REST APIs with the HttpRequest type.<br/> ‣ Cache data offline with a Storage.<br/> ‣ Advanced showcase for Separation of Model, View and Logic Code in your Qt App using QML</html>",
"overviewImage": "preview-assets/appdemos/todo-list/overviewImage.png",
"genres": [
"Productivity"
],
"tags": [
"todo",
"mvc",
"architecture",
"rest",
"api",
"caching"
],
"tagsAll": [
"input",
"field",
"text",
"edit",
"register",
"signup",
"mvc",
"architecture",
"rest",
"api",
"caching",
"books",
"finance",
"productivity",
"shopping",
"time",
"task",
"model"
],
"usedComponents": [
"apptext",
"appactivityindicator",
"appcheckbox",
"applistview",
"apppaper",
"apptextfield",
"appbutton",
"listpage",
"navigation",
"simplerow",
"icon",
"iconbuttonbaritem",
"pulltorefreshhandler",
"storage"
],
"complexity": "Medium",
"order": 120,
"linesOfCode": 737,
"images": [
"preview-assets/appdemos/todo-list/01-android.jpg",
"preview-assets/appdemos/todo-list/01-ios.jpg",
"preview-assets/appdemos/todo-list/02-android.jpg",
"preview-assets/appdemos/todo-list/02-ios.jpg"
],
"main": "qml/TodoListMain.qml",
"cidePath": "-/ide/project/root/todo-list/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/todo-list/todo-list.pro",
"folder": "examples/appdemos/todo-list"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-todolist-example/"
},
"weather-dashboard": {
"id": "weather-dashboard",
"title": "Weather Dashboard App",
"shortTitle": "Weather Dashboard App",
"sourcePath": "appdemos/weather-dashboard",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Embedded weather dashboard UI app",
"description": "<html>The demo showcases how to include animations into user interfaces. It also shows how to build gorgeous full-screen layouts with just a few lines of code. The app makes use of several animation components and introduces a custom timer-based animation for changing the AppText's text.<br/><br/>The demo shows how to:<br/> ‣ Use animations to enrich the user interface<br/> ‣ Show fullscreen UI experiences</html>",
"overviewImage": "preview-assets/appdemos/weather-dashboard/overviewImage.png",
"genres": [
"Embedded"
],
"tags": [
"weather",
"dashboard",
"animations",
"embedded"
],
"tagsAll": [
"weather",
"dashboard",
"animations",
"embedded",
"home",
"automation",
"design",
"travel"
],
"usedComponents": [
"apptext",
"icon",
"coloranimation",
"propertyanimation",
"timer"
],
"complexity": "Simple",
"order": 110,
"linesOfCode": 189,
"images": [
"preview-assets/appdemos/weather-dashboard/01-android.jpg",
"preview-assets/appdemos/weather-dashboard/01-ios.jpg",
"preview-assets/appdemos/weather-dashboard/02-android.jpg",
"preview-assets/appdemos/weather-dashboard/02-ios.jpg"
],
"main": "qml/WeatherDashboardMain.qml",
"cidePath": "-/ide/project/root/weather-dashboard/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/weather-dashboard/weather-dashboard.pro",
"folder": "examples/appdemos/weather-dashboard"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-weather-example/"
},
"time-tracking": {
"id": "time-tracking",
"title": "Time Tracking App",
"shortTitle": "Time Tracking App",
"sourcePath": "appdemos/time-tracking",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Time tracking and project management app",
"description": "<html>This is a UI-centric demo version of the Jira Tima time tracking app. It is based on the official Jira Tima mobile app developed by Felgo.<br/><br/>The demo shows how to:<br/> ‣ Use a shared code-base across Android, iOS and desktop to show best practices for UI design and adaptive layouts<br/> ‣ Use the Navigation component to implement different platform-specific navigation paradigms like a Tab navigation on iOS or a NavigationDrawer on Android<br/> ‣ Use a login screen for an app</html>",
"overviewImage": "preview-assets/appdemos/time-tracking/overviewImage.jpg",
"genres": [
"Project Management"
],
"tags": [
"time",
"tracking",
"work",
"projects"
],
"tagsAll": [
"input",
"edit",
"todo",
"task",
"list",
"todo",
"project",
"worklog",
"jira",
"atlassian",
"design",
"business",
"education",
"events",
"finance",
"productivity",
"time",
"tab"
],
"usedComponents": [
"appbutton",
"appimage",
"apptext",
"datepicker",
"apptextfield",
"sortfilterproxymodel",
"storage",
"navigation",
"floatingactionbutton",
"iconbutton",
"simplerow"
],
"complexity": "Medium",
"order": 40,
"linesOfCode": 532,
"images": [
"preview-assets/appdemos/time-tracking/01-android.jpg",
"preview-assets/appdemos/time-tracking/01-ios.jpg",
"preview-assets/appdemos/time-tracking/02-android.jpg",
"preview-assets/appdemos/time-tracking/02-ios.jpg",
"preview-assets/appdemos/time-tracking/03-android.jpg",
"preview-assets/appdemos/time-tracking/03-ios.jpg"
],
"main": "qml/TimeTrackingMain.qml",
"cidePath": "-/ide/project/root/time-tracking/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/time-tracking/time-tracking.pro",
"folder": "examples/appdemos/time-tracking"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-jira-tima-mini-example/"
},
"input-validation": {
"id": "input-validation",
"title": "Input Form Validation App",
"shortTitle": "Input Forms Demo App",
"sourcePath": "appdemos/input-validation",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "User input validation demo app",
"description": "<html>This demo shows how to use Felgo components to show user input forms and validate the input. Validations are done for email, password and generic text fields.<br/><br/>The demo shows how to:<br/> ‣ Use Felgo components for user input<br/> ‣ Validate input and show error messages<br/> ‣ Show an image picker for user input</html>",
"overviewImage": "preview-assets/appdemos/input-validation/overviewImage.png",
"genres": [
"Other"
],
"tags": [
"input",
"validation",
"form",
"field"
],
"tagsAll": [
"input",
"validation",
"form",
"field",
"text",
"edit",
"register",
"signup",
"parenting"
],
"usedComponents": [
"apptext",
"apptextfield",
"appcheckbox",
"appbutton",
"listpage",
"navigation",
"navigationitem",
"simplerow",
"textfieldrow"
],
"complexity": "Simple",
"order": 180,
"linesOfCode": 274,
"images": [
"preview-assets/appdemos/input-validation/01-android.jpg",
"preview-assets/appdemos/input-validation/01-ios.jpg",
"preview-assets/appdemos/input-validation/02-android.jpg",
"preview-assets/appdemos/input-validation/02-ios.jpg"
],
"main": "qml/InputValidationMain.qml",
"cidePath": "-/ide/project/root/input-validation/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/input-validation/input-validation.pro",
"folder": "examples/appdemos/input-validation"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-input-validation-example/"
},
"translation": {
"id": "translation",
"title": "Translation Example App",
"shortTitle": "Translation Example",
"sourcePath": "appdemos/translation",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Translation Example App",
"description": "<html>This demo shows how to use Felgo to translate your app in multiple languages and change the current language at runtime.</html>",
"overviewImage": "preview-assets/appdemos/translation/overviewImage.png",
"genres": [
"Other"
],
"tags": [
"translation",
"i18n"
],
"tagsAll": [
"translation",
"i18n"
],
"usedComponents": [
"apptext",
"appbutton",
"navigationstack",
"translation"
],
"complexity": "Simple",
"order": 190,
"linesOfCode": 63,
"images": [
"preview-assets/appdemos/translation/01-android.jpg",
"preview-assets/appdemos/translation/01-ios.jpg",
"preview-assets/appdemos/translation/02-android.jpg",
"preview-assets/appdemos/translation/02-ios.jpg"
],
"main": "qml/TranslationExampleMain.qml",
"cidePath": "-/ide/project/root/translation/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/translation/CMakeLists.txt",
"folder": "examples/appdemos/translation"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-translation-example/"
},
"property-cross": {
"id": "property-cross",
"title": "Real Estate App",
"shortTitle": "Real Estate App",
"sourcePath": "appdemos/property-cross",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Real estate marketplace app",
"description": "<html>The demo shows how to search for property listings based on a search term or the user’s current location. It's possible to save favorites for Simple access later on.<br/><br/>The demo title 'Property Cross' derives from a project called PropertyCross that helps to select a cross-platform mobile framework for mobile apps. Thus the demo is the implementation for Felgo Apps.<br/><br/>The demo shows how to:<br/> ‣ Load and parse JSON data from a backend<br/> ‣ Save settings<br/> ‣ Encapsulate your network and data model code into dedicated QML files</html>",
"overviewImage": "preview-assets/appdemos/property-cross/overviewImage.png",
"genres": [
"Real Estate"
],
"tags": [
"real estate",
"search",
"location",
"marketplace"
],
"tagsAll": [
"property",
"cross",
"search",
"location",
"input",
"house",
"shopping",
"marketplace",
"house",
"travel"
],
"usedComponents": [
"apptext",
"apptextfield",
"appimage",
"appbutton",
"applistview",
"simplerow",
"iconbuttonbaritem",
"flickablepage"
],
"complexity": "Medium",
"order": 130,
"linesOfCode": 517,
"images": [
"preview-assets/appdemos/property-cross/01-android.jpg",
"preview-assets/appdemos/property-cross/01-ios.jpg",
"preview-assets/appdemos/property-cross/02-android.jpg",
"preview-assets/appdemos/property-cross/02-ios.jpg",
"preview-assets/appdemos/property-cross/03-android.jpg",
"preview-assets/appdemos/property-cross/03-ios.jpg"
],
"main": "qml/PropertyCrossMain.qml",
"cidePath": "-/ide/project/root/property-cross/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/property-cross/property-cross.pro",
"folder": "examples/appdemos/property-cross"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-propertycross-example/"
},
"bike-sharing": {
"id": "bike-sharing",
"title": "Bike Sharing App",
"shortTitle": "Bike Sharing App",
"sourcePath": "appdemos/bike-sharing",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Location-based and map-centric bike or car sharing app",
"description": "<html>This demo shows available rental bikes for a bike sharing or car sharing service. The demo uses a mapview to show available rental stations around the user’s position (GPS). Specific stations can be marked as favorites for Simple access.<br/><br/>The demo shows how to:<br/> ‣ Display and customize a map<br/> ‣ Get the user's current location and display it on a map<br/> ‣ Load and parse XML data<br/> ‣ Show custom map markers with different styles on a map<br/> ‣ Show a custom view on top of the map<br/> ‣ Customize the look and feel with custom colors and fonts</html>",
"overviewImage": "preview-assets/appdemos/bike-sharing/overviewImage.png",
"genres": [
"Transportation"
],
"tags": [
"transportation",
"maps",
"location",
"sharing",
"bike",
"car"
],
"tagsAll": [
"search",
"location",
"bike",
"sharing",
"mapview",
"maps",
"openstreetmap",
"gps",
"osm",
"openstreetmap",
"mapbox",
"car",
"rest",
"network",
"uber",
"transportation",
"beauty",
"entertainment",
"health",
"lifestyle",
"medical",
"travel",
"xml"
],
"usedComponents": [
"apptext",
"appmap",
"iconbutton",
"xmllistmodel"
],
"complexity": "Simple",
"order": 70,
"linesOfCode": 405,
"images": [
"preview-assets/appdemos/bike-sharing/01-android.jpg",
"preview-assets/appdemos/bike-sharing/01-ios.jpg",
"preview-assets/appdemos/bike-sharing/02-android.jpg",
"preview-assets/appdemos/bike-sharing/02-ios.jpg"
],
"main": "qml/BikeSharingMain.qml",
"cidePath": "-/ide/project/root/bike-sharing/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/bike-sharing/bike-sharing.pro",
"folder": "examples/appdemos/bike-sharing"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-maps-example/"
},
"shopping-list": {
"id": "shopping-list",
"title": "Shopping List App",
"shortTitle": "Shopping List App",
"sourcePath": "appdemos/shopping-list",
"runnable": [
"ios",
"android"
],
"shortDescription": "Grocery shopping list app",
"description": "<html>This demo shows how to create a shopping list app that uses the Firebase real-time database and login to sync across devices. It also shows how to make an app with offline capabilities and sync changes as soon as there is an Internet connection available again.<br/><br/>The demo shows how to:<br/> ‣ Use the Felgo Firebase components to create a realtime-sync and offline-ready app<br/> ‣ Use the Firebase changed listeners to show changes from data in real-time within the user interface</html>",
"overviewImage": "preview-assets/appdemos/shopping-list/overview.gif",
"genres": [
"Retail"
],
"tags": [
"shopping",
"list",
"grocery"
],
"tagsAll": [
"input",
"edit",
"shopping",
"task",
"list",
"firebase",
"sync",
"offline",
"realtime"
],
"usedComponents": [
"apptextfield",
"appcheckbox",
"appbutton",
"firebase",
"firebaseauth",
"firebasedatabase",
"firebaseconfig",
"simplerow"
],
"complexity": "Complex",
"order": 170,
"linesOfCode": 418,
"images": [
"preview-assets/appdemos/shopping-list/01-android.jpg",
"preview-assets/appdemos/shopping-list/01-ios.jpg",
"preview-assets/appdemos/shopping-list/01-media.jpg",
"preview-assets/appdemos/shopping-list/02-android.jpg",
"preview-assets/appdemos/shopping-list/02-ios.jpg"
],
"main": "qml/ShoppingListMain.qml",
"cidePath": "-/ide/project/root/shopping-list/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/shopping-list/shopping-list.pro",
"folder": "examples/appdemos/shopping-list"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-shopping-list-example/"
},
"social-network": {
"id": "social-network",
"title": "Social Network App",
"shortTitle": "Social Network App",
"sourcePath": "appdemos/social-network",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "A Twitter-like social network app",
"description": "<html>The Twitter-like social network app shows how to build layouts like in the official Twitter app for iOS and Android. It includes all common navigation concepts and demonstrates how to use the NavigationStack component within a root Navigation item.<br/><br/>The demo shows how to: <br/> ‣ Build up a user interface for browsing content<br/> ‣ Use Felgo navigation components<br/> ‣ Parse data from an API and display it in listviews<br/> ‣ Apply some advanced styling and UI effects like blur or sticky navigation headers</html>",
"overviewImage": "preview-assets/appdemos/social-network/overviewImage.png",
"genres": [
"Social"
],
"tags": [
"social network",
"messaging",
"chat"
],
"tagsAll": [
"social",
"messaging",
"chat",
"social",
"facebook",
"twitter",
"tweet",
"network",
"art",
"beauty",
"communication",
"dating",
"entertainment",
"events",
"food",
"health",
"lifestyle",
"news",
"photography"
],
"usedComponents": [
"apptext",
"jsonlistmodel",
"navigationstack",
"listpage",
"icon",
"navigation"
],
"complexity": "Medium",
"order": 60,
"linesOfCode": 964,
"images": [
"preview-assets/appdemos/social-network/01-android.jpg",
"preview-assets/appdemos/social-network/01-ios.jpg",
"preview-assets/appdemos/social-network/02-android.jpg",
"preview-assets/appdemos/social-network/02-ios.jpg",
"preview-assets/appdemos/social-network/03-android.jpg",
"preview-assets/appdemos/social-network/03-ios.jpg"
],
"main": "qml/TwitterMain.qml",
"cidePath": "-/ide/project/root/social-network/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/social-network/social-network.pro",
"folder": "examples/appdemos/social-network"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-twitter-example/"
},
"music-streaming": {
"id": "music-streaming",
"title": "Music Streaming App",
"shortTitle": "Music Streaming App",
"sourcePath": "appdemos/music-streaming-app",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Spotify-like music streaming app",
"description": "<html>This demo shows how to build a music streaming app to browse playlists, search for content and show playback controls.<br/><br/>The demo shows how to:<br/> ‣ Create content-centric UIs<br/> ‣ Use audio playback and playback controls in apps<br/> ‣ Use fulltext search to browse content</html>",
"overviewImage": "preview-assets/appdemos/music-streaming-app/overviewImage.png",
"genres": [
"Entertainment"
],
"tags": [
"music",
"streaming",
"podcasts",
"audio"
],
"tagsAll": [
"entertainment",
"podcasts",
"audio",
"music",
"spotify",
"youtube",
"design"
],
"usedComponents": [
"audio",
"appbutton",
"appimage",
"applistview",
"apptext",
"appflickable",
"appswitch",
"flickablepage",
"jsonlistmodel",
"listpage",
"iconbuttonbaritem",
"simplerow",
"storage"
],
"complexity": "Medium",
"order": 30,
"linesOfCode": 2430,
"images": [
"preview-assets/appdemos/music-streaming-app/01-android.jpg",
"preview-assets/appdemos/music-streaming-app/01-ios.jpg",
"preview-assets/appdemos/music-streaming-app/02-android.jpg",
"preview-assets/appdemos/music-streaming-app/02-ios.jpg",
"preview-assets/appdemos/music-streaming-app/03-android.jpg",
"preview-assets/appdemos/music-streaming-app/03-ios.jpg"
],
"main": "qml/Main.qml",
"cidePath": "-/ide/project/root/music-streaming/edit/",
"livePath": "",
"desktopPath": {
"pro": "examples/appdemos/music-streaming-app/music-streaming-app.pro",
"folder": "examples/appdemos/music-streaming-app"
},
"docLink": "https://felgo.com/doc/felgo-appdemos-music-streaming-app-example/"
},
"component-showcase": {
"id": "component-showcase",
"title": "Component Showcase App",
"shortTitle": "Component Showcase App",
"sourcePath": "appdemos/component-showcase",
"runnable": [
"windows",
"osx",
"linux",
"ios",
"android",
"wasm"
],
"shortDescription": "Felgo component collection and showcase app",
"description": "<html>This demo shows the most important Felgo Apps features combined in a single app with native user experience (UX) and fluid UI animations:<br/><br/> ‣ Theming and native platform styles<br/> ‣ Native dialogs, camera/image picker and share features<br/> ‣ Embedded maps and GPS positioning<br/> ‣ Embedded video, audio and WebView<br/> ‣ Shader effects and fluid animations<br/> ‣ Native styled controls and Qt Quick Controls<br/> ‣ Local storage, app navigation, lists and sections<br/><br/>The demo shows how to:<br/> ‣ Use Felgo components in your own app<br/> ‣ Create animations<br/> ‣ Apply styling and theming for components</html>",
"overviewImage": "preview-assets/appdemos/component-showcase/overviewImage.png",
"genres": [
"Other"
],
"tags": [
"components",
"listview",
"edit",
"input",
"navigation",
"animations",
"effects"
],
"tagsAll": [
"components",
"listview",
"edit",
"input",
"navigation",
"animations",
"effects",
"showcase"
],
"usedComponents": [
"appactivityindicator",
"appbutton",
"appcard",
"appcheckbox",
"appflickable",
"appimage",
"appmap",
"appmodal",
"apprangeslider",
"camera",
"datepicker",
"simplerow",
"appslider",
"appswitch",
"apptext",
"apptextfield",
"datepicker",
"mapquickitem",
"mediaplayer",
"floatingactionbutton",
"icon",
"iconbutton",
"simplesection",
"textfieldrow",
"scrollindicator",