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
2023-11-02 03:42:33 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2023-11-02 03:42:33 -0300
Commit
359e831fed5f4bee1352cb4f65d717b9ff3dba56
359e831f
2 parents
4a073aef
39b319c1
Merge pull request #2875 from CodeWithEmad/chore/typos
chore: corrected typos
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
56 additions
and
56 deletions
lib/get.dart
lib/get_connect/connect.dart
lib/get_connect/http/src/http.dart
lib/get_instance/src/extension_instance.dart
lib/get_instance/src/lifecycle.dart
lib/get_navigation/src/extension_navigation.dart
lib/get_navigation/src/root/get_root.dart
lib/get_navigation/src/router_report.dart
lib/get_navigation/src/routes/default_route.dart
lib/get_navigation/src/routes/get_router_delegate.dart
lib/get_navigation/src/routes/parse_route.dart
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
lib/get_state_manager/src/simple/get_responsive.dart
lib/get_utils/src/extensions/context_extensions.dart
lib/get_utils/src/extensions/string_extensions.dart
lib/get_utils/src/get_utils/get_utils.dart
lib/get_utils/src/widgets/otimized_listview.dart
test/utils/extensions/string_extensions_test.dart
lib/get.dart
View file @
359e831
/// GetX is an extra-light and powerful multiplatform framework.
/// GetX is an extra-light and powerful multi
-
platform framework.
/// It combines high performance state management, intelligent dependency
/// injection, and route management in a quick and practical way.
library
get
;
...
...
lib/get_connect/connect.dart
View file @
359e831
...
...
@@ -278,7 +278,7 @@ class GetConnect extends GetConnectInterface {
return
baseUrl
==
null
?
url
:
baseUrl
!
+
url
;
}
/// query allow made GraphQL raw quer
y
s
/// query allow made GraphQL raw quer
ie
s
/// final connect = GetConnect();
/// connect.baseUrl = 'https://countries.trevorblades.com/';
/// final response = await connect.query(
...
...
lib/get_connect/http/src/http.dart
View file @
359e831
...
...
@@ -132,20 +132,20 @@ class GetHttpClient {
});
var
formData
=
parts
.
join
(
'&'
);
bodyBytes
=
utf8
.
encode
(
formData
);
_setContentLeng
ht
(
headers
,
bodyBytes
.
length
);
_setContentLeng
th
(
headers
,
bodyBytes
.
length
);
headers
[
'content-type'
]
=
contentType
;
}
else
if
(
body
is
Map
||
body
is
List
)
{
var
jsonString
=
json
.
encode
(
body
);
bodyBytes
=
utf8
.
encode
(
jsonString
);
_setContentLeng
ht
(
headers
,
bodyBytes
.
length
);
_setContentLeng
th
(
headers
,
bodyBytes
.
length
);
headers
[
'content-type'
]
=
contentType
??
defaultContentType
;
}
else
if
(
body
is
String
)
{
bodyBytes
=
utf8
.
encode
(
body
);
_setContentLeng
ht
(
headers
,
bodyBytes
.
length
);
_setContentLeng
th
(
headers
,
bodyBytes
.
length
);
headers
[
'content-type'
]
=
contentType
??
defaultContentType
;
}
else
if
(
body
==
null
)
{
_setContentLeng
ht
(
headers
,
0
);
_setContentLeng
th
(
headers
,
0
);
headers
[
'content-type'
]
=
contentType
??
defaultContentType
;
}
else
{
if
(!
errorSafety
)
{
...
...
@@ -170,7 +170,7 @@ class GetHttpClient {
responseInterceptor:
responseInterceptor
);
}
void
_setContentLeng
ht
(
Map
<
String
,
String
>
headers
,
int
contentLength
)
{
void
_setContentLeng
th
(
Map
<
String
,
String
>
headers
,
int
contentLength
)
{
if
(
sendContentLength
)
{
headers
[
'content-length'
]
=
'
$contentLength
'
;
}
...
...
lib/get_instance/src/extension_instance.dart
View file @
359e831
...
...
@@ -508,7 +508,7 @@ class _InstanceBuilderFactory<S> {
/// For reusing [dependency] instead of [builderFunc]
bool
?
isSingleton
;
/// When fenix mode is ava
li
able, when a new instance is need
/// When fenix mode is ava
il
able, when a new instance is need
/// Instance manager will recreate a new instance of S
bool
fenix
;
...
...
lib/get_instance/src/lifecycle.dart
View file @
359e831
...
...
@@ -39,7 +39,7 @@ mixin GetLifeCycleMixin {
bool
get
initialized
=>
_initialized
;
/// Called at the exact moment the widget is allocated in memory.
/// It uses an internal "callable" type, to avoid any @overrides in subclases.
/// It uses an internal "callable" type, to avoid any @overrides in subclas
s
es.
/// This method should be internal and is required to define the
/// lifetime cycle of the subclass.
// @protected
...
...
lib/get_navigation/src/extension_navigation.dart
View file @
359e831
...
...
@@ -575,7 +575,7 @@ extension GetNavigationExt on GetInterface {
/// By default, GetX will prevent you from push a route that you already in,
/// if you want to push anyway, set [preventDuplicates] to false
///
/// Note: Always put a slash on the route ('/page1'), to avoid un
n
expected errors
/// Note: Always put a slash on the route ('/page1'), to avoid unexpected errors
Future
<
T
?>?
toNamed
<
T
>(
String
page
,
{
dynamic
arguments
,
...
...
@@ -616,7 +616,7 @@ extension GetNavigationExt on GetInterface {
/// By default, GetX will prevent you from push a route that you already in,
/// if you want to push anyway, set [preventDuplicates] to false
///
/// Note: Always put a slash on the route ('/page1'), to avoid un
n
expected errors
/// Note: Always put a slash on the route ('/page1'), to avoid unexpected errors
Future
<
T
?>?
offNamed
<
T
>(
String
page
,
{
dynamic
arguments
,
...
...
@@ -1076,7 +1076,7 @@ extension GetNavigationExt on GetInterface {
String
_cleanRouteName
(
String
name
)
{
name
=
name
.
replaceAll
(
'() => '
,
''
);
/// uncomm
on
ent for URL styling.
/// uncomment for URL styling.
// name = name.paramCase!;
if
(!
name
.
startsWith
(
'/'
))
{
name
=
'/
$name
'
;
...
...
lib/get_navigation/src/root/get_root.dart
View file @
359e831
...
...
@@ -518,7 +518,7 @@ class GetRootState extends State<GetRoot> with WidgetsBindingObserver {
()
=>
GetDelegate
(
showHashOnUrl:
true
,
//debugLabel: 'Getx nested key: ${key.toString()}',
pages:
RouteDecoder
.
fromRoute
(
key
).
currentChildren
s
??
[],
pages:
RouteDecoder
.
fromRoute
(
key
).
currentChildren
??
[],
),
);
return
keys
[
key
];
...
...
@@ -532,7 +532,7 @@ class GetRootState extends State<GetRoot> with WidgetsBindingObserver {
String
cleanRouteName
(
String
name
)
{
name
=
name
.
replaceAll
(
'() => '
,
''
);
/// uncomm
on
ent for URL styling.
/// uncomment for URL styling.
// name = name.paramCase!;
if
(!
name
.
startsWith
(
'/'
))
{
name
=
'/
$name
'
;
...
...
lib/get_navigation/src/router_report.dart
View file @
359e831
...
...
@@ -37,12 +37,12 @@ class RouterReportManager<T> {
/// Links a Class instance [S] (or [tag]) to the current route.
/// Requires usage of `GetMaterialApp`.
void
reportDependencyLinkedToRoute
(
String
depedencyKey
)
{
void
reportDependencyLinkedToRoute
(
String
depe
n
dencyKey
)
{
if
(
_current
==
null
)
return
;
if
(
_routesKey
.
containsKey
(
_current
))
{
_routesKey
[
_current
!]!.
add
(
depedencyKey
);
_routesKey
[
_current
!]!.
add
(
depe
n
dencyKey
);
}
else
{
_routesKey
[
_current
]
=
<
String
>[
depedencyKey
];
_routesKey
[
_current
]
=
<
String
>[
depe
n
dencyKey
];
}
}
...
...
lib/get_navigation/src/routes/default_route.dart
View file @
359e831
...
...
@@ -119,10 +119,10 @@ class GetPageRoute<T> extends PageRoute<T>
if
(
_child
!=
null
)
return
_child
!;
final
middlewareRunner
=
MiddlewareRunner
(
middlewares
);
final
local
b
inds
=
[
if
(
binds
!=
null
)
...
binds
!];
final
local
B
inds
=
[
if
(
binds
!=
null
)
...
binds
!];
final
bindingsToBind
=
middlewareRunner
.
runOnBindingsStart
(
bindings
.
isNotEmpty
?
bindings
:
local
b
inds
);
.
runOnBindingsStart
(
bindings
.
isNotEmpty
?
bindings
:
local
B
inds
);
final
pageToBuild
=
middlewareRunner
.
runOnPageBuildStart
(
page
)!;
...
...
lib/get_navigation/src/routes/get_router_delegate.dart
View file @
359e831
...
...
@@ -290,7 +290,7 @@ class GetDelegate extends RouterDelegate<RouteDecoder>
final
res
=
currentHistory
!.
currentTreeBranch
.
where
((
r
)
=>
r
.
participatesInRootNavigator
!=
null
);
if
(
res
.
isEmpty
)
{
//default behav
oi
r, all routes participate in root navigator
//default behav
io
r, all routes participate in root navigator
return
_activePages
.
map
((
e
)
=>
e
.
route
!);
}
else
{
//user specified at least one participatesInRootNavigator
...
...
@@ -603,7 +603,7 @@ class GetDelegate extends RouterDelegate<RouteDecoder>
}
/// Removes routes according to [PopMode]
/// until it reaches the specifc [fullRoute],
/// until it reaches the specif
i
c [fullRoute],
/// DOES NOT remove the [fullRoute]
@override
Future
<
void
>
popModeUntil
(
...
...
@@ -666,7 +666,7 @@ class GetDelegate extends RouterDelegate<RouteDecoder>
String
_cleanRouteName
(
String
name
)
{
name
=
name
.
replaceAll
(
'() => '
,
''
);
/// uncomm
on
ent for URL styling.
/// uncomment for URL styling.
// name = name.paramCase!;
if
(!
name
.
startsWith
(
'/'
))
{
name
=
'/
$name
'
;
...
...
lib/get_navigation/src/routes/parse_route.dart
View file @
359e831
...
...
@@ -39,7 +39,7 @@ class RouteDecoder {
}
}
List
<
GetPage
>?
get
currentChildren
s
=>
route
?.
children
;
List
<
GetPage
>?
get
currentChildren
=>
route
?.
children
;
Map
<
String
,
String
>
get
parameters
=>
pageSettings
?.
params
??
{};
...
...
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
View file @
359e831
...
...
@@ -8,7 +8,7 @@ mixin RxObjectMixin<T> on GetListenable<T> {
//late T _value;
/// Makes a direct update of [value] adding it to the Stream
/// useful when you make use of Rx for custom Types to ref
e
resh your UI.
/// useful when you make use of Rx for custom Types to refresh your UI.
///
/// Sample:
/// ```
...
...
lib/get_state_manager/src/simple/get_responsive.dart
View file @
359e831
...
...
@@ -110,9 +110,9 @@ class ResponsiveScreen {
late
BuildContext
context
;
final
ResponsiveScreenSettings
settings
;
late
bool
_isP
al
tformDesktop
;
late
bool
_isP
la
tformDesktop
;
ResponsiveScreen
(
this
.
settings
)
{
_isP
al
tformDesktop
=
GetPlatform
.
isDesktop
;
_isP
la
tformDesktop
=
GetPlatform
.
isDesktop
;
}
double
get
height
=>
context
.
height
;
...
...
@@ -130,15 +130,15 @@ class ResponsiveScreen {
/// Is [screenType] [ScreenType.Watch]
bool
get
isWatch
=>
(
screenType
==
ScreenType
.
watch
);
double
get
_getdeviceWidth
{
if
(
_isPaltformDesktop
)
{
double
get
_getDeviceWidth
{
if
(
_isPlatformDesktop
)
{
return
width
;
}
return
context
.
mediaQueryShortestSide
;
}
ScreenType
get
screenType
{
final
deviceWidth
=
_get
d
eviceWidth
;
final
deviceWidth
=
_get
D
eviceWidth
;
if
(
deviceWidth
>=
settings
.
desktopChangePoint
)
return
ScreenType
.
desktop
;
if
(
deviceWidth
>=
settings
.
tabletChangePoint
)
return
ScreenType
.
tablet
;
if
(
deviceWidth
<
settings
.
watchChangePoint
)
return
ScreenType
.
watch
;
...
...
lib/get_utils/src/extensions/context_extensions.dart
View file @
359e831
...
...
@@ -5,12 +5,12 @@ extension ContextExt on BuildContext {
Size
get
mediaQuerySize
=>
MediaQuery
.
sizeOf
(
this
);
/// The same of [MediaQuery.of(context).size.height]
/// Note: updates when you re
zis
e your screen (like on a browser or
/// Note: updates when you re
siz
e your screen (like on a browser or
/// desktop window)
double
get
height
=>
mediaQuerySize
.
height
;
/// The same of [MediaQuery.of(context).size.width]
/// Note: updates when you re
zis
e your screen (like on a browser or
/// Note: updates when you re
siz
e your screen (like on a browser or
/// desktop window)
double
get
width
=>
mediaQuerySize
.
width
;
...
...
lib/get_utils/src/extensions/string_extensions.dart
View file @
359e831
...
...
@@ -70,7 +70,7 @@ extension GetStringUtils on String {
/// Discover if the String is a SHA256 Hash
bool
get
isSHA256
=>
GetUtils
.
isSHA256
(
this
);
/// Discover if the String is a b
y
nary value
/// Discover if the String is a b
i
nary value
bool
get
isBinary
=>
GetUtils
.
isBinary
(
this
);
/// Discover if the String is a ipv4
...
...
@@ -81,8 +81,8 @@ extension GetStringUtils on String {
/// Discover if the String is a Hexadecimal
bool
get
isHexadecimal
=>
GetUtils
.
isHexadecimal
(
this
);
/// Discover if the String is a palindrom
bool
get
isPalindrom
=>
GetUtils
.
isPalindrom
(
this
);
/// Discover if the String is a palindrome
bool
get
isPalindrome
=>
GetUtils
.
isPalindrome
(
this
);
/// Discover if the String is a passport number
bool
get
isPassport
=>
GetUtils
.
isPassport
(
this
);
...
...
lib/get_utils/src/get_utils/get_utils.dart
View file @
359e831
...
...
@@ -64,10 +64,10 @@ class GetUtils {
/// In dart2js (in flutter v1.17) a var by default is undefined.
/// *Use this only if you are in version <- 1.17*.
/// So we assure the null type in json conver
t
ions to avoid the
/// So we assure the null type in json conver
s
ions to avoid the
/// "value":value==null?null:value; someVar.nil will force the null type
/// if the var is null or undefined.
/// `nil` taken from ObjC just to have a shorter s
i
ntax.
/// `nil` taken from ObjC just to have a shorter s
y
ntax.
static
dynamic
nil
(
dynamic
s
)
=>
s
;
/// Checks if data is null or blank (empty or only contains whitespace).
...
...
@@ -103,7 +103,7 @@ class GetUtils {
static
bool
isAlphabetOnly
(
String
s
)
=>
hasMatch
(
s
,
r'^[a-zA-Z]+$'
);
/// Checks if string contains at least one Capital Letter
static
bool
hasCapital
l
etter
(
String
s
)
=>
hasMatch
(
s
,
r'[A-Z]'
);
static
bool
hasCapital
L
etter
(
String
s
)
=>
hasMatch
(
s
,
r'[A-Z]'
);
/// Checks if string is boolean.
static
bool
isBool
(
String
value
)
{
...
...
@@ -253,8 +253,8 @@ class GetUtils {
static
bool
isHexadecimal
(
String
s
)
=>
hasMatch
(
s
,
r'^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$'
);
/// Checks if string is Palindrom.
static
bool
isPalindrom
(
String
string
)
{
/// Checks if string is Palindrome.
static
bool
isPalindrome
(
String
string
)
{
final
cleanString
=
string
.
toLowerCase
()
.
replaceAll
(
RegExp
(
r"\s+"
),
''
)
...
...
@@ -397,25 +397,25 @@ class GetUtils {
/// Checks if num a EQUAL than num b.
static
bool
isEqual
(
num
a
,
num
b
)
=>
a
==
b
;
//
Check
if num is a cnpj
//
Checks
if num is a cnpj
static
bool
isCnpj
(
String
cnpj
)
{
//
Obter somente os números do
CNPJ
//
Get only the numbers from the
CNPJ
final
numbers
=
cnpj
.
replaceAll
(
RegExp
(
r'[^0-9]'
),
''
);
// Test
ar se o CNPJ possui 14 dígito
s
// Test
if the CNPJ has 14 digit
s
if
(
numbers
.
length
!=
14
)
{
return
false
;
}
// Test
ar se todos os dígitos do CNPJ são iguais
// Test
if all digits of the CNPJ are the same
if
(
RegExp
(
r'^(\d)\1*$'
).
hasMatch
(
numbers
))
{
return
false
;
}
// Divid
ir dígito
s
// Divid
e digit
s
final
digits
=
numbers
.
split
(
''
).
map
(
int
.
parse
).
toList
();
// Calcula
r o primeiro dígito verificador
// Calcula
te the first check digit
var
calcDv1
=
0
;
var
j
=
0
;
for
(
var
i
in
Iterable
<
int
>.
generate
(
12
,
(
i
)
=>
i
<
4
?
5
-
i
:
13
-
i
))
{
...
...
@@ -424,12 +424,12 @@ class GetUtils {
calcDv1
%=
11
;
final
dv1
=
calcDv1
<
2
?
0
:
11
-
calcDv1
;
// Test
ar o primeiro dígito verificado
// Test
the first check digit
if
(
digits
[
12
]
!=
dv1
)
{
return
false
;
}
// Calcula
r o segundo dígito verificador
// Calcula
te the second check digit
var
calcDv2
=
0
;
j
=
0
;
for
(
var
i
in
Iterable
<
int
>.
generate
(
13
,
(
i
)
=>
i
<
5
?
6
-
i
:
14
-
i
))
{
...
...
@@ -438,7 +438,7 @@ class GetUtils {
calcDv2
%=
11
;
final
dv2
=
calcDv2
<
2
?
0
:
11
-
calcDv2
;
// Test
ar o segundo dígito verificador
// Test
the second check digit
if
(
digits
[
13
]
!=
dv2
)
{
return
false
;
}
...
...
@@ -517,7 +517,7 @@ class GetUtils {
return
value
.
replaceAll
(
' '
,
''
);
}
///
Camelc
ase string
///
camelC
ase string
/// Example: your name => yourName
static
String
?
camelCase
(
String
value
)
{
if
(
isNullOrBlank
(
value
)!)
{
...
...
@@ -576,7 +576,7 @@ class GetUtils {
/// Extract numeric value of string
/// Example: OTP 12312 27/04/2020 => 1231227042020ß
/// If first
word o
nly is true, then the example return is "12312"
/// If first
WordO
nly is true, then the example return is "12312"
/// (first found numeric word)
static
String
numericOnly
(
String
s
,
{
bool
firstWordOnly
=
false
})
{
var
numericOnlyStr
=
''
;
...
...
lib/get_utils/src/widgets/otimized_listview.dart
View file @
359e831
...
...
@@ -9,7 +9,7 @@ class OtimizedListView<T> extends StatelessWidget {
final
ScrollPhysics
?
physics
;
final
bool
shrinkWrap
;
final
Widget
onEmpty
;
final
int
leng
ht
;
final
int
leng
th
;
final
Widget
Function
(
BuildContext
context
,
ValueKey
key
,
T
item
)
builder
;
const
OtimizedListView
({
Key
?
key
,
...
...
@@ -22,7 +22,7 @@ class OtimizedListView<T> extends StatelessWidget {
this
.
physics
,
this
.
onEmpty
=
const
SizedBox
.
shrink
(),
this
.
shrinkWrap
=
false
,
})
:
leng
ht
=
list
.
length
,
})
:
leng
th
=
list
.
length
,
super
(
key:
key
);
@override
Widget
build
(
BuildContext
context
)
{
...
...
test/utils/extensions/string_extensions_test.dart
View file @
359e831
...
...
@@ -555,7 +555,7 @@ void main() {
expect
(
alphaNumeric
.
isHexadecimal
,
false
);
});
test
(
'var.isPalindrom'
,
()
{
test
(
'var.isPalindrom
e
'
,
()
{
final
palindroms
=
[
'Anna'
,
'Civic'
,
...
...
@@ -584,7 +584,7 @@ void main() {
'A dama admirou o rim da amada.'
,
'A Daniela ama a lei? Nada!'
,
// TODO make isPalindrom regex support UTF8 characters
// TODO make isPalindrom
e
regex support UTF8 characters
// 'Adias a data da saída.',
// 'A diva em Argel alegra-me a vida.',
// 'A droga do dote é todo da gorda.',
...
...
@@ -607,9 +607,9 @@ void main() {
];
for
(
final
palindrom
in
palindroms
)
{
// print("testing $palindrom");
expect
(
palindrom
.
isPalindrom
,
true
);
expect
(
palindrom
.
isPalindrom
e
,
true
);
}
expect
(
alphaNumeric
.
isPalindrom
,
false
);
expect
(
alphaNumeric
.
isPalindrom
e
,
false
);
});
test
(
'var.isPassport'
,
()
{
final
passports
=
[
...
...
Please
register
or
login
to post a comment