瀏覽代碼

Improve navBarBlur and navBarTranslucent documentation (#4681)

Kyle Johnson 6 年之前
父節點
當前提交
e00af9d068
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5
    2
      docs/docs/options-migration.md

+ 5
- 2
docs/docs/options-migration.md 查看文件

419
 
419
 
420
 ```js
420
 ```js
421
 topBar: {
421
 topBar: {
422
+  drawBehind: true,
422
   background: {
423
   background: {
423
     translucent: true
424
     translucent: true
424
   }
425
   }
435
 ```
436
 ```
436
 
437
 
437
 ## navBarBlur
438
 ## navBarBlur
438
-Blue the area behind the TopBar, Setting `drawBehind: true` is required for this property to work as expected.
439
+Blur the area behind the TopBar, Setting `drawBehind: true` and  topBar background `transparent: true` is required for this property to work as expected.
439
 
440
 
440
 ```js
441
 ```js
441
 topBar: {
442
 topBar: {
443
+  drawBehind: true,
442
   background: {
444
   background: {
443
-    blur: true
445
+    blur: true,
446
+    transparent: true
444
   }
447
   }
445
 }  
448
 }  
446
 ```
449
 ```