瀏覽代碼

Improve navBarBlur and navBarTranslucent documentation (#4681)

Kyle Johnson 5 年之前
父節點
當前提交
e00af9d068
共有 1 個檔案被更改,包括 5 行新增2 行删除
  1. 5
    2
      docs/docs/options-migration.md

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

@@ -419,6 +419,7 @@ Translucent TopBar, Setting `drawBehind: true` is required for this property to
419 419
 
420 420
 ```js
421 421
 topBar: {
422
+  drawBehind: true,
422 423
   background: {
423 424
     translucent: true
424 425
   }
@@ -435,12 +436,14 @@ topBar: {
435 436
 ```
436 437
 
437 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 441
 ```js
441 442
 topBar: {
443
+  drawBehind: true,
442 444
   background: {
443
-    blur: true
445
+    blur: true,
446
+    transparent: true
444 447
   }
445 448
 }  
446 449
 ```