Showing
1 changed file
with
16 additions
and
16 deletions
@@ -390,46 +390,46 @@ Get.contextOverlay | @@ -390,46 +390,46 @@ Get.contextOverlay | ||
390 | context.width | 390 | context.width |
391 | context.height | 391 | context.height |
392 | 392 | ||
393 | -/// similar to MediaQuery.of(this).padding | 393 | +/// similar a MediaQuery.of(this).padding |
394 | context.mediaQueryPadding() | 394 | context.mediaQueryPadding() |
395 | 395 | ||
396 | -/// similar to MediaQuery.of(this).viewPadding | 396 | +/// similar a MediaQuery.of(this).viewPadding |
397 | context.mediaQueryViewPadding() | 397 | context.mediaQueryViewPadding() |
398 | 398 | ||
399 | -/// similar to MediaQuery.of(this).viewInsets; | 399 | +/// similar a MediaQuery.of(this).viewInsets; |
400 | context.mediaQueryViewInsets() | 400 | context.mediaQueryViewInsets() |
401 | 401 | ||
402 | -/// similar to MediaQuery.of(this).orientation; | 402 | +/// similar a MediaQuery.of(this).orientation; |
403 | context.orientation() | 403 | context.orientation() |
404 | 404 | ||
405 | -/// check if device is on landscape mode | 405 | +/// verifica se o dispositivo está no modo paisagem |
406 | context.isLandscape() | 406 | context.isLandscape() |
407 | 407 | ||
408 | -/// check if device is on portrait mode | 408 | +/// verifica se o dispositivo está no modo retrato |
409 | context.isPortrait() | 409 | context.isPortrait() |
410 | 410 | ||
411 | -/// similar to MediaQuery.of(this).devicePixelRatio; | 411 | +/// similar a MediaQuery.of(this).devicePixelRatio; |
412 | context.devicePixelRatio() | 412 | context.devicePixelRatio() |
413 | 413 | ||
414 | -/// similar to MediaQuery.of(this).textScaleFactor; | 414 | +/// similar a MediaQuery.of(this).textScaleFactor; |
415 | context.textScaleFactor() | 415 | context.textScaleFactor() |
416 | 416 | ||
417 | -/// get the shortestSide from screen | 417 | +/// obtém a menor dimensão (largura ou altura) da tela |
418 | context.mediaQueryShortestSide() | 418 | context.mediaQueryShortestSide() |
419 | 419 | ||
420 | -/// True if width be larger than 800 | 420 | +/// retorna True se a largura da tela for maior que 800px |
421 | context.showNavbar() | 421 | context.showNavbar() |
422 | 422 | ||
423 | -/// True if the shortestSide is smaller than 600p | 423 | +/// retorna True se a menor dimensão (largura ou altura) da tela for menor que 600px |
424 | context.isPhone() | 424 | context.isPhone() |
425 | 425 | ||
426 | -/// True if the shortestSide is largest than 600p | 426 | +/// retorna True se a menor dimensão (largura ou altura) da tela for maior ou igual a 600px |
427 | context.isSmallTablet() | 427 | context.isSmallTablet() |
428 | 428 | ||
429 | -/// True if the shortestSide is largest than 720p | 429 | +/// retorna True se a menor dimensão (largura ou altura) da tela for maior ou igual a 720px |
430 | context.isLargeTablet() | 430 | context.isLargeTablet() |
431 | 431 | ||
432 | -/// True if the current device is Tablet | 432 | +/// retorna True se o dispositivo é um Tablet |
433 | context.isTablet() | 433 | context.isTablet() |
434 | ``` | 434 | ``` |
435 | 435 | ||
@@ -489,10 +489,10 @@ void localLogWriter(String text, {bool isError = false}) { | @@ -489,10 +489,10 @@ void localLogWriter(String text, {bool isError = false}) { | ||
489 | } | 489 | } |
490 | ``` | 490 | ``` |
491 | 491 | ||
492 | -## Video explanation of Other GetX Features | 492 | +## Explicação em vídeo sobre Outras Features do GetX |
493 | 493 | ||
494 | 494 | ||
495 | -Amateur Coder did an awesome video about utils, storage, bindings and other features! Link: [GetX Other Features](https://youtu.be/ttQtlX_Q0eU) | 495 | +Amateur Coder fez um vídeo incrível sobre utils, storage, bindings e outras features! Link: [GetX Other Features](https://youtu.be/ttQtlX_Q0eU) |
496 | 496 | ||
497 | # Breaking Changes da versão 2 para 3 | 497 | # Breaking Changes da versão 2 para 3 |
498 | 498 |
-
Please register or login to post a comment