Browse Source

Improve navBarBlur and navBarTranslucent documentation (#4681)

Kyle Johnson 6 years ago
parent
commit
e00af9d068
1 changed files with 5 additions and 2 deletions
  1. 5
    2
      docs/docs/options-migration.md

+ 5
- 2
docs/docs/options-migration.md View File

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
 ```