Jonny Borges
Committed by GitHub

Merge pull request #2875 from CodeWithEmad/chore/typos

chore: corrected typos
/// 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;
... ...
... ... @@ -278,7 +278,7 @@ class GetConnect extends GetConnectInterface {
return baseUrl == null ? url : baseUrl! + url;
}
/// query allow made GraphQL raw querys
/// query allow made GraphQL raw queries
/// final connect = GetConnect();
/// connect.baseUrl = 'https://countries.trevorblades.com/';
/// final response = await connect.query(
... ...
... ... @@ -132,20 +132,20 @@ class GetHttpClient {
});
var formData = parts.join('&');
bodyBytes = utf8.encode(formData);
_setContentLenght(headers, bodyBytes.length);
_setContentLength(headers, bodyBytes.length);
headers['content-type'] = contentType;
} else if (body is Map || body is List) {
var jsonString = json.encode(body);
bodyBytes = utf8.encode(jsonString);
_setContentLenght(headers, bodyBytes.length);
_setContentLength(headers, bodyBytes.length);
headers['content-type'] = contentType ?? defaultContentType;
} else if (body is String) {
bodyBytes = utf8.encode(body);
_setContentLenght(headers, bodyBytes.length);
_setContentLength(headers, bodyBytes.length);
headers['content-type'] = contentType ?? defaultContentType;
} else if (body == null) {
_setContentLenght(headers, 0);
_setContentLength(headers, 0);
headers['content-type'] = contentType ?? defaultContentType;
} else {
if (!errorSafety) {
... ... @@ -170,7 +170,7 @@ class GetHttpClient {
responseInterceptor: responseInterceptor);
}
void _setContentLenght(Map<String, String> headers, int contentLength) {
void _setContentLength(Map<String, String> headers, int contentLength) {
if (sendContentLength) {
headers['content-length'] = '$contentLength';
}
... ...
... ... @@ -508,7 +508,7 @@ class _InstanceBuilderFactory<S> {
/// For reusing [dependency] instead of [builderFunc]
bool? isSingleton;
/// When fenix mode is avaliable, when a new instance is need
/// When fenix mode is available, when a new instance is need
/// Instance manager will recreate a new instance of S
bool fenix;
... ...
... ... @@ -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 subclasses.
/// This method should be internal and is required to define the
/// lifetime cycle of the subclass.
// @protected
... ...
... ... @@ -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 unnexpected 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 unnexpected 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('() => ', '');
/// uncommonent for URL styling.
/// uncomment for URL styling.
// name = name.paramCase!;
if (!name.startsWith('/')) {
name = '/$name';
... ...
... ... @@ -518,7 +518,7 @@ class GetRootState extends State<GetRoot> with WidgetsBindingObserver {
() => GetDelegate(
showHashOnUrl: true,
//debugLabel: 'Getx nested key: ${key.toString()}',
pages: RouteDecoder.fromRoute(key).currentChildrens ?? [],
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('() => ', '');
/// uncommonent for URL styling.
/// uncomment for URL styling.
// name = name.paramCase!;
if (!name.startsWith('/')) {
name = '/$name';
... ...
... ... @@ -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 dependencyKey) {
if (_current == null) return;
if (_routesKey.containsKey(_current)) {
_routesKey[_current!]!.add(depedencyKey);
_routesKey[_current!]!.add(dependencyKey);
} else {
_routesKey[_current] = <String>[depedencyKey];
_routesKey[_current] = <String>[dependencyKey];
}
}
... ...
... ... @@ -119,10 +119,10 @@ class GetPageRoute<T> extends PageRoute<T>
if (_child != null) return _child!;
final middlewareRunner = MiddlewareRunner(middlewares);
final localbinds = [if (binds != null) ...binds!];
final localBinds = [if (binds != null) ...binds!];
final bindingsToBind = middlewareRunner
.runOnBindingsStart(bindings.isNotEmpty ? bindings : localbinds);
.runOnBindingsStart(bindings.isNotEmpty ? bindings : localBinds);
final pageToBuild = middlewareRunner.runOnPageBuildStart(page)!;
... ...
... ... @@ -290,7 +290,7 @@ class GetDelegate extends RouterDelegate<RouteDecoder>
final res = currentHistory!.currentTreeBranch
.where((r) => r.participatesInRootNavigator != null);
if (res.isEmpty) {
//default behavoir, all routes participate in root navigator
//default behavior, 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 specific [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('() => ', '');
/// uncommonent for URL styling.
/// uncomment for URL styling.
// name = name.paramCase!;
if (!name.startsWith('/')) {
name = '/$name';
... ...
... ... @@ -39,7 +39,7 @@ class RouteDecoder {
}
}
List<GetPage>? get currentChildrens => route?.children;
List<GetPage>? get currentChildren => route?.children;
Map<String, String> get parameters => pageSettings?.params ?? {};
... ...
... ... @@ -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 referesh your UI.
/// useful when you make use of Rx for custom Types to refresh your UI.
///
/// Sample:
/// ```
... ...
... ... @@ -110,9 +110,9 @@ class ResponsiveScreen {
late BuildContext context;
final ResponsiveScreenSettings settings;
late bool _isPaltformDesktop;
late bool _isPlatformDesktop;
ResponsiveScreen(this.settings) {
_isPaltformDesktop = GetPlatform.isDesktop;
_isPlatformDesktop = 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 = _getdeviceWidth;
final deviceWidth = _getDeviceWidth;
if (deviceWidth >= settings.desktopChangePoint) return ScreenType.desktop;
if (deviceWidth >= settings.tabletChangePoint) return ScreenType.tablet;
if (deviceWidth < settings.watchChangePoint) return ScreenType.watch;
... ...
... ... @@ -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 rezise your screen (like on a browser or
/// Note: updates when you resize 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 rezise your screen (like on a browser or
/// Note: updates when you resize your screen (like on a browser or
/// desktop window)
double get width => mediaQuerySize.width;
... ...
... ... @@ -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 bynary value
/// Discover if the String is a binary 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);
... ...
... ... @@ -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 convertions to avoid the
/// So we assure the null type in json conversions 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 sintax.
/// `nil` taken from ObjC just to have a shorter syntax.
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 hasCapitalletter(String s) => hasMatch(s, r'[A-Z]');
static bool hasCapitalLetter(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]'), '');
// Testar se o CNPJ possui 14 dígitos
// Test if the CNPJ has 14 digits
if (numbers.length != 14) {
return false;
}
// Testar 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;
}
// Dividir dígitos
// Divide digits
final digits = numbers.split('').map(int.parse).toList();
// Calcular o primeiro dígito verificador
// Calculate 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;
// Testar o primeiro dígito verificado
// Test the first check digit
if (digits[12] != dv1) {
return false;
}
// Calcular o segundo dígito verificador
// Calculate 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;
// Testar 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(' ', '');
}
/// Camelcase string
/// camelCase 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 firstword only is true, then the example return is "12312"
/// If firstWordOnly is true, then the example return is "12312"
/// (first found numeric word)
static String numericOnly(String s, {bool firstWordOnly = false}) {
var numericOnlyStr = '';
... ...
... ... @@ -9,7 +9,7 @@ class OtimizedListView<T> extends StatelessWidget {
final ScrollPhysics? physics;
final bool shrinkWrap;
final Widget onEmpty;
final int lenght;
final int length;
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,
}) : lenght = list.length,
}) : length = list.length,
super(key: key);
@override
Widget build(BuildContext context) {
... ...
... ... @@ -555,7 +555,7 @@ void main() {
expect(alphaNumeric.isHexadecimal, false);
});
test('var.isPalindrom', () {
test('var.isPalindrome', () {
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 isPalindrome 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.isPalindrome, true);
}
expect(alphaNumeric.isPalindrom, false);
expect(alphaNumeric.isPalindrome, false);
});
test('var.isPassport', () {
final passports = [
... ...