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
Jonny Borges
2020-06-12 14:54:25 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2020-06-12 14:54:25 -0300
Commit
5ccbb96da82669472847aaf071b00e47a0bb641c
5ccbb96d
1 parent
e8451137
Update to 2.12.6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
10 deletions
CHANGELOG.md
lib/src/root/root_widget.dart
lib/src/snackbar/snack.dart
pubspec.lock
pubspec.yaml
CHANGELOG.md
View file @
5ccbb96
## [2.12.6]
-
Update docs
-
Fix Bindings list on GetRouteBase
## [2.12.5]
-
Update readme
...
...
lib/src/root/root_widget.dart
View file @
5ccbb96
...
...
@@ -141,6 +141,7 @@ class GetMaterialApp extends StatelessWidget {
alignment:
newNamedRoutes
[
settingsName
].
alignment
,
opaque:
newNamedRoutes
[
settingsName
].
opaque
,
binding:
newNamedRoutes
[
settingsName
].
binding
,
bindings:
newNamedRoutes
[
settingsName
].
bindings
,
transitionDuration:
(
transitionDuration
==
null
?
newNamedRoutes
[
settingsName
].
transitionDuration
:
transitionDuration
),
...
...
@@ -166,6 +167,7 @@ class GetMaterialApp extends StatelessWidget {
parameter:
unknownRoute
.
parameter
,
opaque:
unknownRoute
.
opaque
,
binding:
unknownRoute
.
binding
,
bindings:
unknownRoute
.
bindings
,
transitionDuration:
unknownRoute
.
transitionDuration
,
popGesture:
unknownRoute
.
popGesture
,
transition:
unknownRoute
.
transition
,
...
...
lib/src/snackbar/snack.dart
View file @
5ccbb96
...
...
@@ -375,14 +375,18 @@ class _GetBarState<K extends Object> extends State<GetBar>
child:
SafeArea
(
minimum:
widget
.
snackPosition
==
SnackPosition
.
BOTTOM
?
EdgeInsets
.
only
(
bottom:
MediaQuery
.
of
(
context
).
padding
.
bottom
)
:
// EdgeInsets.only(top: MediaQuery.of(context).viewInsets.top),
EdgeInsets
.
only
(
top:
MediaQuery
.
of
(
context
).
padding
.
top
),
bottom:
widget
.
snackPosition
==
SnackPosition
.
BOTTOM
,
top:
widget
.
snackPosition
==
SnackPosition
.
TOP
,
left:
false
,
right:
false
,
child:
_getSnack
(),
:
EdgeInsets
.
only
(
top:
MediaQuery
.
of
(
context
).
padding
.
top
),
child:
SafeArea
(
minimum:
widget
.
snackPosition
==
SnackPosition
.
BOTTOM
?
EdgeInsets
.
only
(
bottom:
MediaQuery
.
of
(
context
).
viewInsets
.
bottom
)
:
EdgeInsets
.
only
(
top:
MediaQuery
.
of
(
context
).
viewInsets
.
top
),
bottom:
widget
.
snackPosition
==
SnackPosition
.
BOTTOM
,
top:
widget
.
snackPosition
==
SnackPosition
.
TOP
,
left:
false
,
right:
false
,
child:
_getSnack
(),
),
),
),
);
...
...
pubspec.lock
View file @
5ccbb96
...
...
@@ -136,4 +136,4 @@ packages:
source: hosted
version: "2.0.8"
sdks:
dart: ">=2.
7.0
<3.0.0"
dart: ">=2.
9.0-14.0.dev
<3.0.0"
...
...
pubspec.yaml
View file @
5ccbb96
name
:
get
description
:
Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with Get.
version
:
2.12.
5
version
:
2.12.
6
homepage
:
https://github.com/jonataslaw/get
environment
:
...
...
Please
register
or
login
to post a comment