Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Dhruvan Bhalara
2023-07-28 23:45:32 +0530
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e6df6b245060171fc20d7a666fa287233580e718
e6df6b24
1 parent
b365c322
chore: Update README.md
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
README.md
README.md
View file @
e6df6b2
...
...
@@ -680,19 +680,19 @@ context.height
context
.
heightTransformer
()
context
.
widthTransformer
()
/// Similar to MediaQuery.
of(context).size
/// Similar to MediaQuery.
sizeOf(context);
context
.
mediaQuerySize
()
/// Similar to MediaQuery.
of(context).padding
/// Similar to MediaQuery.
paddingOf(context);
context
.
mediaQueryPadding
()
/// Similar to MediaQuery.
of(context).viewPadding
/// Similar to MediaQuery.
viewPaddingOf(context);
context
.
mediaQueryViewPadding
()
/// Similar to MediaQuery.
of(context).viewInsets
;
/// Similar to MediaQuery.
viewInsetsOf(context)
;
context
.
mediaQueryViewInsets
()
/// Similar to MediaQuery.o
f(context).orientation
;
/// Similar to MediaQuery.o
rientationOf(context)
;
context
.
orientation
()
/// Check if device is on landscape mode
...
...
@@ -701,10 +701,10 @@ context.isLandscape()
/// Check if device is on portrait mode
context
.
isPortrait
()
/// Similar to MediaQuery.
of(context).devicePixelRatio
;
/// Similar to MediaQuery.
devicePixelRatioOf(context)
;
context
.
devicePixelRatio
()
/// Similar to MediaQuery.
of(context).textScaleFactor
;
/// Similar to MediaQuery.
textScaleFactorOf(context)
;
context
.
textScaleFactor
()
/// Get the shortestSide from screen
...
...
Please
register
or
login
to post a comment