Bläddra i källkod

Improve navBarBlur and navBarTranslucent documentation (#4681)

Kyle Johnson 5 år sedan
förälder
incheckning
e00af9d068
1 ändrade filer med 5 tillägg och 2 borttagningar
  1. 5
    2
      docs/docs/options-migration.md

+ 5
- 2
docs/docs/options-migration.md Visa fil

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