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
Jonatas
2020-11-30 12:52:26 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7c79af54372d370651bdb0ff19236c8d8ca66f66
7c79af54
1 parent
5d019b4f
update to 3.21.2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
3 deletions
CHANGELOG.md
lib/get_connect/connect.dart
lib/get_connect/http/src/http.dart
lib/get_navigation/src/root/get_cupertino_app.dart
lib/get_navigation/src/root/get_material_app.dart
pubspec.yaml
CHANGELOG.md
View file @
7c79af5
## [3.21.2]
-
Fix GetConnect.request returning a PUT request
## [3.21.1]
-
Allow null body to POST method on GetConnect
...
...
lib/get_connect/connect.dart
View file @
7c79af5
...
...
@@ -170,8 +170,9 @@ class GetConnect extends GetConnectInterface {
Decoder
<
T
>
decoder
,
})
{
_checkIfDisposed
();
return
httpClient
.
pu
t
(
return
httpClient
.
reques
t
(
url
,
method
,
body:
body
,
headers:
headers
,
contentType:
contentType
,
...
...
lib/get_connect/http/src/http.dart
View file @
7c79af5
...
...
@@ -312,7 +312,7 @@ class GetHttpClient {
Future
<
Response
<
T
>>
request
<
T
>(
String
url
,
String
method
,
{
Map
<
String
,
dynamic
>
body
,
dynamic
body
,
String
contentType
,
Map
<
String
,
String
>
headers
,
Map
<
String
,
dynamic
>
query
,
...
...
lib/get_navigation/src/root/get_cupertino_app.dart
View file @
7c79af5
...
...
@@ -204,6 +204,7 @@ class GetCupertinoApp extends StatelessWidget {
settings:
RouteSettings
(
name:
name
,
arguments:
null
),
curve:
unknownRoute
.
curve
,
opaque:
unknownRoute
.
opaque
,
routeName:
unknownRoute
.
name
,
customTransition:
unknownRoute
.
customTransition
,
binding:
unknownRoute
.
binding
,
bindings:
unknownRoute
.
bindings
,
...
...
@@ -223,6 +224,7 @@ class GetCupertinoApp extends StatelessWidget {
settings:
RouteSettings
(
name:
name
,
arguments:
null
),
curve:
match
.
route
.
curve
,
opaque:
match
.
route
.
opaque
,
routeName:
match
.
route
.
name
,
binding:
match
.
route
.
binding
,
bindings:
match
.
route
.
bindings
,
transitionDuration:
...
...
lib/get_navigation/src/root/get_material_app.dart
View file @
7c79af5
...
...
@@ -215,6 +215,7 @@ class GetMaterialApp extends StatelessWidget {
settings:
RouteSettings
(
name:
name
,
arguments:
null
),
curve:
unknownRoute
.
curve
,
opaque:
unknownRoute
.
opaque
,
routeName:
unknownRoute
.
name
,
customTransition:
unknownRoute
.
customTransition
,
binding:
unknownRoute
.
binding
,
bindings:
unknownRoute
.
bindings
,
...
...
@@ -235,6 +236,7 @@ class GetMaterialApp extends StatelessWidget {
curve:
match
.
route
.
curve
,
opaque:
match
.
route
.
opaque
,
binding:
match
.
route
.
binding
,
routeName:
match
.
route
.
name
,
bindings:
match
.
route
.
bindings
,
transitionDuration:
(
match
.
route
.
transitionDuration
??
Get
.
defaultTransitionDuration
),
...
...
pubspec.yaml
View file @
7c79af5
name
:
get
description
:
Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX.
version
:
3.21.
1
version
:
3.21.
2
homepage
:
https://github.com/jonataslaw/getx
environment
:
...
...
Please
register
or
login
to post a comment