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
2021-04-11 13:11:22 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6cded4c955ac1298d6634e164437306821cec2ae
6cded4c9
1 parent
ce11784a
bump to 4.1.4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
CHANGELOG.md
lib/get_connect/http/src/http.dart
pubspec.yaml
CHANGELOG.md
View file @
6cded4c
## [4.1.4]
-
Adjust operator + and - to RxInt (@eduardoflorence)
-
Fix dark theme (@eduardoflorence)
-
Fix form-urlencoded on GetConnect (@aramayyes)
## [4.1.3]
-
Fix "Error: A value of type 'Locale?' can't be returned from a function"on flutter web (@nickwri)
-
Fix plural translations to expressions >1 (@WolfVic)
...
...
lib/get_connect/http/src/http.dart
View file @
6cded4c
...
...
@@ -103,7 +103,9 @@ class GetHttpClient {
headers
[
'content-length'
]
=
bodyBytes
.
length
.
toString
();
headers
[
'content-type'
]
=
'multipart/form-data; boundary=
${body.boundary}
'
;
}
else
if
(
contentType
!=
null
&&
contentType
.
toLowerCase
()
==
'application/x-www-form-urlencoded'
&&
body
is
Map
)
{
}
else
if
(
contentType
!=
null
&&
contentType
.
toLowerCase
()
==
'application/x-www-form-urlencoded'
&&
body
is
Map
)
{
var
parts
=
[];
(
body
as
Map
<
String
,
dynamic
>).
forEach
((
key
,
value
)
{
parts
.
add
(
'
${Uri.encodeQueryComponent(key)}
='
...
...
pubspec.yaml
View file @
6cded4c
name
:
get
description
:
Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX.
version
:
4.1.
3
version
:
4.1.
4
homepage
:
https://github.com/jonataslaw/getx
environment
:
...
...
Please
register
or
login
to post a comment