-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1000 lines (425 loc) · 38.9 KB
/
index.html
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
<!DOCTYPE HTML>
<html lang="tw" >
<head>
<title>Introduction · React Natvie 課程講義 v20190905</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="">
<meta name="generator" content="GitBook 3.2.3">
<meta name="author" content="Marko Manninen">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-fontsettings/website.css">
<link rel="stylesheet" href="media/website.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="intro/readme.html" />
</head>
<body>
<div class="book">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li class="chapter active" data-level="1.1" data-path="./">
<a href="./">
Introduction
</a>
</li>
<li class="chapter " data-level="1.2" data-path="intro/readme.html">
<a href="intro/readme.html">
React Native 介紹
</a>
<ul class="articles">
<li class="chapter " data-level="1.2.1" data-path="intro/">
<a href="intro/">
React Native 基礎介紹
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.3" data-path="react/readme_1.html">
<a href="react/readme_1.html">
React.JS 介紹
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.1" data-path="react/React_Intro.html">
<a href="react/React_Intro.html">
1. React.JS 介紹
</a>
</li>
<li class="chapter " data-level="1.3.2" data-path="react/Virtual_DOM.html">
<a href="react/Virtual_DOM.html">
2. 關鍵的 Virtual DOM
</a>
</li>
<li class="chapter " data-level="1.3.3" data-path="react/React_Data_Flow.html">
<a href="react/React_Data_Flow.html">
3. 資料與畫面的更新流程
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4" data-path="react/readme_2.html">
<a href="react/readme_2.html">
React 教學
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1" data-path="setup/expo-snack.html">
<a href="setup/expo-snack.html">
1. Expo Snack 介紹
</a>
</li>
<li class="chapter " data-level="1.4.2" data-path="react/Component.html">
<a href="react/Component.html">
2. React Component - 樂高式的 UI 組合
</a>
</li>
<li class="chapter " data-level="1.4.3" data-path="react/JSX.html">
<a href="react/JSX.html">
3. 好直覺的 JSX 語法糖
</a>
</li>
<li class="chapter " data-level="1.4.4" data-path="react/Props.html">
<a href="react/Props.html">
4. Props - 傳遞資料的媒介
</a>
</li>
<li class="chapter " data-level="1.4.5" data-path="react/State.html">
<a href="react/State.html">
5. State - 動態更新的資料載體
</a>
</li>
<li class="chapter " data-level="1.4.6" data-path="react/Lifecycle.html">
<a href="react/Lifecycle.html">
6. Lifecycle - Component 的一生
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.5" data-path="components/readme.html">
<a href="components/readme.html">
React Native 組件練習教學
</a>
<ul class="articles">
<li class="chapter " data-level="1.5.1" data-path="components/">
<a href="components/">
組件使用教學 - View
</a>
</li>
<li class="chapter " data-level="1.5.2" data-path="layout/image.html">
<a href="layout/image.html">
Image
</a>
</li>
<li class="chapter " data-level="1.5.3" data-path="layout/button.html">
<a href="layout/button.html">
Button
</a>
</li>
<li class="chapter " data-level="1.5.4" data-path="components/Input_Data_Flow.html">
<a href="components/Input_Data_Flow.html">
Input 組件的資料流管理
</a>
</li>
<li class="chapter " data-level="1.5.5" data-path="layout/list.html">
<a href="layout/list.html">
List
</a>
</li>
<li class="chapter " data-level="1.5.6" data-path="ToDoList/">
<a href="ToDoList/">
實戰練習 ToDo List
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.6" data-path="layout/readme.html">
<a href="layout/readme.html">
樣式與排版設計
</a>
<ul class="articles">
<li class="chapter " data-level="1.6.1" data-path="layout/style.html">
<a href="layout/style.html">
React Native Style
</a>
</li>
<li class="chapter " data-level="1.6.2" data-path="layout/view.html">
<a href="layout/view.html">
View 樣式
</a>
</li>
<li class="chapter " data-level="1.6.3" data-path="layout/flex.html">
<a href="layout/flex.html">
Flex
</a>
</li>
<li class="chapter " data-level="1.6.4" data-path="layout/text.html">
<a href="layout/text.html">
Text
</a>
</li>
<li class="chapter " data-level="1.6.5" data-path="ToDoList/add-style.html">
<a href="ToDoList/add-style.html">
ToDo List Style 練習
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.7" data-path="setup/readme.html">
<a href="setup/readme.html">
專案環境設置
</a>
<ul class="articles">
<li class="chapter " data-level="1.7.1" data-path="setup/environment.html">
<a href="setup/environment.html">
一般環境設定
</a>
</li>
<li class="chapter " data-level="1.7.2" data-path="setup/VM_Setup.html">
<a href="setup/VM_Setup.html">
虛擬機環境教學
</a>
</li>
<li class="chapter " data-level="1.7.3" data-path="setup/initialize_project.html">
<a href="setup/initialize_project.html">
初始化專案
</a>
</li>
<li class="chapter " data-level="1.7.4" data-path="setup/eslint.html">
<a href="setup/eslint.html">
ESLint
</a>
</li>
<li class="chapter " data-level="1.7.5" data-path="setup/git.html">
<a href="setup/git.html">
git 常用操作指令
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.8" data-path="Network/readme.html">
<a href="Network/readme.html">
網路與 HTTP Request
</a>
<ul class="articles">
<li class="chapter " data-level="1.8.1" data-path="Network/setup.html">
<a href="Network/setup.html">
網路環境設定
</a>
</li>
<li class="chapter " data-level="1.8.2" data-path="Network/fetch.html">
<a href="Network/fetch.html">
fetch HTTP request
</a>
</li>
<li class="chapter " data-level="1.8.3" data-path="ToDoList/restful-api.html">
<a href="ToDoList/restful-api.html">
ToDo List RESTful API 練習
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.9" data-path="third-party/">
<a href="third-party/">
第三方套件管理
</a>
<ul class="articles">
<li class="chapter " data-level="1.9.1" data-path="third-party/js-module.html">
<a href="third-party/js-module.html">
JavaScript 套件管理方式
</a>
</li>
<li class="chapter " data-level="1.9.2" data-path="third-party/native-module.html">
<a href="third-party/native-module.html">
原生模組整合設定
</a>
</li>
<li class="chapter " data-level="1.9.3" data-path="ToDoList/add-icon.html">
<a href="ToDoList/add-icon.html">
整合套件練習
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.10" data-path="navigation/readme.html">
<a href="navigation/readme.html">
多畫面管理 Navigation
</a>
<ul class="articles">
<li class="chapter " data-level="1.10.1" data-path="navigation/">
<a href="navigation/">
介紹管理套件 RNRF
</a>
</li>
<li class="chapter " data-level="1.10.2" data-path="ToDoList/router.html">
<a href="ToDoList/router.html">
ToDoList 畫面管理練習
</a>
</li>
<li class="chapter " data-level="1.10.3" data-path="navigation/tabs.html">
<a href="navigation/tabs.html">
Tab 使用方式
</a>
</li>
<li class="chapter " data-level="1.10.4" data-path="navigation/drawer.html">
<a href="navigation/drawer.html">
Drawer 使用方式
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.11" data-path="async-storage/">
<a href="async-storage/">
儲存空間 AsyncStorage
</a>
<ul class="articles">
<li class="chapter " data-level="1.11.1" data-path="async-storage/">
<a href="async-storage/">
AsyncStorage 介紹
</a>
</li>
<li class="chapter " data-level="1.11.2" data-path="ToDoList/async-storage.html">
<a href="ToDoList/async-storage.html">
ToDo List 使用 AsyncStorage 練習
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.12" data-path="release/readme.html">
<a href="release/readme.html">
生成 App 安裝檔
</a>
<ul class="articles">
<li class="chapter " data-level="1.12.1" data-path="release/">
<a href="release/">
打包 JS
</a>
</li>
<li class="chapter " data-level="1.12.2" data-path="release/generate-app.html">
<a href="release/generate-app.html">
編譯專案產生 App 安裝檔
</a>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
本書使用 GitBook 釋出
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="." >Introduction</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal markdown-section">
<div id="README.md">
<h1 id="agileworks">AgileWorks</h1>
<p>本教材由創科資訊研發團隊共同編撰。</p>
<h2 id="react-native-進階實戰班">React Native 進階實戰班</h2>
<p>課程將會帶大家從 React 基礎觀念開始,透過豐富的範例及練習,逐漸熟悉 React Native 框架和開發方式,擁有跨平台應用的開發能力。</p>
<h3 id="適合對象">適合對象</h3>
<p>企業內訓/進階實戰</p>
<h3 id="學習目的">學習目的</h3>
<p>透過 Learning by Doing 從做中學的方式,瞭解持續整合與自動化測試的方法論與專案實作方式,包括 React 與 React Native 的技術實務應用,幫助學員能在日常工作中實際使用。</p>
<ul>
<li>使用 React Native 的好處,及優缺點</li>
<li>了解 React Native 語言特性</li>
<li>學習如何使用 React Native 開發雙平台 APP</li>
<li>學習如何使用 React Native 操作手機元件</li>
<li>學習如何使用 React Native 進行推播及即時更新 APP</li>
</ul>
<h3 id="課程大綱">課程大綱</h3>
<p>行動裝置的 Native App 有更好的使用者體驗,但是與 Mobile Web 相比之下,不僅開發難度較高,想要同時開發維護 iOS 與 Android 兩大平台的 App,更是一件耗時費力的工作。</p>
<p>Facebook 在 F8 開發者大會,發表一項開源的新框架 React Native,透過 JSX 技術打造行動裝置的原生 UI 介面,非常令開發者興奮,只要熟悉一套 JavaScript 程式語言,維護同一份原始碼,就能同時上架到 iOS 與 Android,並且在各平台達到原生相同的效能與外觀。</p>
<p>React Native 大幅降低開發 App 的門檻,使用 JavaScript 語言在開發時程上也加速不少。在本次課程中,將引領大家用輕鬆簡單的入門方法,快速進到 React Native 的世界,感受用 JavaScript 開發 App 的極速快感。</p>
<h3 id="課程特色">課程特色</h3>
<p>採用 Workshop 形式授課,每個單元提供實作練習。
強調每位學員皆能動手完成實作練習,搭配 AgileWorks 教學平台提供線上教材與 VM Lab 操作環境。
基礎課程包含 React 觀念、React Native 開發環境建制及基礎開發知識。
進階課程包含手機元件操作、動畫與多媒體、推播整合,以及即時更新 APP 等。</p>
<p>可依照開發團隊需求調整搭配章節組合。</p>
<h3 id="備註">備註</h3>
<p>為確保課程品質及學員滿意度,Workshop 總人數建議以 20 人為限。</p>
<h3 id="時數">時數</h3>
<p>建議安排 18 小時(分成 3 次上課,每次 6 小時,例如:上午 2 小時、下午 4 小時)</p>
<hr>
<p>敏捷軟體開發培訓課程,預約請洽<a href="https://trunk-studio.com/" target="_blank">創科資訊</a>。</p>
<h2 id="主題課程">主題課程</h2>
<ul>
<li>Git 版本控制實務</li>
<li>Jenkins 與 Docker 持續整合實務</li>
<li>Jenkins 進階應用實務 NEW</li>
<li>Jenkins X 自動化雲端部署實務 NEW</li>
<li>測試驅動開發與自動化測試實務</li>
<li>Node.js MVC 網站開發實務</li>
<li>PHP Laravel MVC 網站開發實務</li>
<li>Bootstrap + jQuery RWD 網站前端開發基礎</li>
<li>React / Vue 網站前端開發實務</li>
<li>React Native 跨平台行動應用開發實務</li>
<li>AWS 雲端應用開發基礎</li>
<li>Node.js 聊天機器人開發基礎</li>
</ul>
<h3 id="培訓目標">培訓目標</h3>
<p>本系列培訓課程提供 12 ~ 18 小時授課內容,採以工作坊形式授課,使學員在實作中獲得對理論與實務工具的理解,協助企業建立軟體開發團隊工作流程,導入優良的版本控制、自動化測試、持續整合與部署方法,提升開發團隊對於敏捷方法論在真實工作情境中的執行力</p>
<h3 id="培訓經驗">培訓經驗</h3>
<p>代表性企業客戶培訓實績包括:台灣大哥大、中華電信、PCHome、KKBOX、QNAP、關貿網路、神達電腦、鋐寶科技、啟德電子、碩超科技...等。課程合作夥伴包括:iThome、資策會、雲端愛上課、Udemy 與工研院等單位。</p>
<p>培訓團隊講師也在 JCConf Taiwan、Java Developer Day、Container Summit、JSDC、CTJS、Modern Web… 等研討會擔任講者,致力於在地社群技術推廣與分享。並於校園擔任業界師資包括:台灣大學、台中科技大學、南臺科技大學、高雄海洋科技大學、成功大學、正修科技大學、義守大學、建國科技大學、亞東技術學院、逢甲大學、勤益科技大學、聯合大學⋯為軟體開發實務教育貢獻一己之力。</p>
<h3 id="師資介紹">師資介紹</h3>
<h4 id="林彥宏--kyle">林彥宏 / Kyle</h4>
<p>任職於創科資訊擔任技術總監</p>
<p>具備 Java 工程師與 AWS 架構師原廠專業認證,逾十年軟體開發實作經驗,在軟體開發現場負責架構規劃設計,並協助國內超過 30家企業與學校,規劃專業軟體開發相關培訓課程,均獲得極高滿意評價。有多年專欄寫作經驗,技術文章曾發表於 Linux Pilot 與 Code Data,獲得 2012 年 iT 邦幫忙鐵人賽優選,於 2017 年協作《實戰聊天機器人Bot開發:使用Node.js 》書籍中文翻譯出版。競賽方面,近年獲得 2016 年海峽兩岸青年創客大賽一等獎與 2017 年全球華人網路安全技能大賽優勝。</p>
<p>授課範圍:Java、GitLab、Jenkins、Docker、AWS</p>
<h4 id="謝宗穎--spooky">謝宗穎 / Spooky</h4>
<p>任職於創科資訊擔任技術經理</p>
<p>擁有實務上的 Web Full Stack 開發經驗,提倡 TDD 開發方式,熟悉 CI Jenkins 進行自動化及 Docker 應用部署,逾十年軟體開發實作經驗,參與多個大型產品開發,在各個知名國內研討會分享敏捷開發相關議程,於 2017 年協作《Jenkins CI 實戰手冊》電子書,並且與資策會 iThome 合作敏捷開發相關工作坊,及企業培訓課程,擔任技術團隊管理者,從事企業技術教學與顧問。</p>
<p>授課範圍:Java、Git、Jenkins、Docker、Kubernetes、Node.js、TDD</p>
<h4 id="黃駿朋--dmoon">黃駿朋 / Dmoon</h4>
<p>授課範圍:JavaScript、React、React Native</p>
<h4 id="劉艾霖--alin">劉艾霖 / Alin</h4>
<p>授課範圍:JavaScript、Git、Node.js、TDD、E2E Test、Swagger</p>
<h4 id="張致寧--eddy">張致寧 / Eddy</h4>
<p>授課範圍:JavaScript、PHP、React、React Native</p>
</div>
</section>
</div>
</div>
</div>
<a href="intro/readme.html" class="navigation navigation-next navigation-unique" aria-label="Next page: React Native 介紹">
<i class="fa fa-angle-right"></i>
</a>
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"React Native 介紹","level":"1.2","depth":1,"path":"intro/readme.md","ref":"intro/readme.md","articles":[{"title":"React Native 基礎介紹","level":"1.2.1","depth":2,"path":"intro/index.md","ref":"intro/index.md","articles":[]}]},"dir":"ltr"},"config":{"totalpages":110,"plugins":["regexplace","ga"],"styles":{"website":"media/website.css","ebook":"media/ebook.css","pdf":"media/ebook.css","mobi":"media/epub.css","epub":"media/epub.css"},"pluginsConfig":{"":[{"pattern":"<!-- pagewrapper -->","flags":"g","substitute":"<div id=\"_PAGE_PATH_\">"},{"pattern":"<!-- endpagewrapper -->","flags":"g","substitute":"</div>"},{"pattern":"((?!([^<]+)?>)([0-9A-Za-z\\u0080-\\u00FF'.-]?)+(?!([^{]+)?})([0-9A-Za-z\\u0080-\\u00FF'])?(?!([^&]+)?;)([0-9A-Za-z\\u0080-\\u00FF']))","flags":"g","substitute":"$1","unreset":true,"store":{"substitute":"{$1}","unique":true,"lower":true,"variable_name":"uniquewords"}},{"pattern":"((?!([^<]+)?>)([0-9A-Za-z\\u0080-\\u00FF'.-]?)+(?!([^{]+)?})([0-9A-Za-z\\u0080-\\u00FF'])?(?!([^&]+)?;)([0-9A-Za-z\\u0080-\\u00FF']))","flags":"g","substitute":"$1","unreset":true,"store":{"substitute":"{$1}","variable_name":"allwords"}}],"regexplace":{"removeFirstPartsInSectionNumber":true,"substitutes":[{"pattern":"<!-- pagebreak -->","flags":"g","substitute":"<div class=\"page-break\"></div>"},{"pattern":"<!-- clear -->","flags":"g","substitute":"<div class=\"clear\"></div>"},{"pattern":"<!-- nopb -->","flags":"g","substitute":"<div class=\"nopb\">"},{"pattern":"<!-- endnopb -->","flags":"g","substitute":"</div>"},{"pattern":"<!-- note -->","flags":"g","substitute":"<div class=\"note\">"},{"pattern":"<!-- endnote -->","flags":"g","substitute":"</div>"},{"pattern":"!\\[(.*?)\\]\\((.*?)(?:\\s+\"(.*)\")?\\){0,}{caption=1([^\\}]*)}","flags":"gmi","substitute":"<figure id=\"fig_PAGE_LEVEL_._INDEX_\"><img $3 alt=\"$1\" title=\"$1\" href=\"$2\"><figcaption></figcaption></figure>","decode":true},{"pattern":"<img ([^>]*) {0,}/{0,}> {0,}{caption=1([^\\}]*)}","flags":"g","substitute":"<figure id=\"fig_PAGE_LEVEL_._INDEX_\"><img $2 $1><figcaption></figcaption></figure>","decode":true},{"pattern":"<img (.*)alt=\"([^\"]*)\"(.*) {0,1}/{0,1}><figcaption></figcaption>","flags":"g","substitute":"<img$1alt=\"$2\"$3><figcaption><span>Picture _PAGE_LEVEL_._INDEX_</span>: $2</figcaption>","store":{"substitute":"<a href=\"_PAGE_PATH_#fig_PAGE_LEVEL_._INDEX_\">Pic. _PAGE_LEVEL_._INDEX_</a> <span>$2</span>","variable_name":"pictures"}},{"pattern":"<!-- cite author=\"(.*?)\" title=\"(.*?)\" date=\"(.*?)\" location=\"(.*?)\" type=\"(.*?)\"(.*?) -->","flags":"g","substitute":"<sup><a id=\"cite_INDEX_\" href=\"/references.html#ref_PAGE_LEVEL_._INDEX_\" title=\"$1: $2 $3\" type=\"$5\">_INDEX_</a></sup>","store":{"substitute":"<span><a id=\"ref_PAGE_LEVEL_._INDEX_\" href=\"_PAGE_PATH_#cite_INDEX_\">_PAGE_LEVEL_._INDEX_.</a></span> <div type=\"$5\"><span>$1:</span> <span><a$6>$2</a></span> <span>$3</span> <span>$4</span></div>","variable_name":"citations"}},{"pattern":"<p><img(.+?){style (.+?)}</p>","flags":"g","substitute":"<p style=\"$2\"><img$1</p>","decode":true}]},"search":{},"_addcssjs":{"js":["//cdn.mathjax.org/mathjax/2.5-latest/MathJax.js?config=TeX-AMS-MML_SVG","//code.jquery.com/jquery-2.1.4.min.js","media/jquery-mathjax-to-img.js?png=0&dlpng=0&dlsvg=0&scale=4&output=0"],"css":[]},"__addcssjs":{"js":["//code.jquery.com/jquery-2.1.4.min.js"],"css":[]},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"sitemap":{"hostname":"http://trunk-studio.com"},"ga":{"configuration":"auto","token":""},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"hidepagefooters":[1],"copyright":"創科資訊股份有限公司 版權所有","theme":"default","keywords":"","author":"Marko Manninen","published":"05/09/2019","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"footer_title":"限精誠資訊內部教育訓練使用","hidepageheaders":[1],"isbn":"","variables":{"pictures":[],"allwords":[],"uniquewords":[],"citations":[]},"title":"React Natvie 課程講義 v20190905","language":"tw","website":"http://trunk-studio.com","gitbook":"*","description":""},"file":{"path":"README.md","mtime":"2018-11-08T03:21:54.457Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2019-09-09T05:35:25.617Z"},"basePath":".","book":{"language":""}});
});
</script>
</div>
<script src="gitbook/gitbook.js"></script>
<script src="gitbook/theme.js"></script>
<script src="gitbook/gitbook-plugin-ga/plugin.js"></script>
<script src="gitbook/gitbook-plugin-search/search-engine.js"></script>
<script src="gitbook/gitbook-plugin-search/search.js"></script>
<script src="gitbook/gitbook-plugin-lunr/lunr.min.js"></script>
<script src="gitbook/gitbook-plugin-lunr/search-lunr.js"></script>
<script src="gitbook/gitbook-plugin-sharing/buttons.js"></script>
<script src="gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script>
</body>
</html>