Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-18 09:40:06 +05:00
commit 1bf3e41abe
352 changed files with 16315 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
extension SliverCountExtension on int {
int get doubleTheListCount => (this * 2) - 1;
int get exactIndex => (this ~/ 2);
int get lastIndex => (this * 2) - 2;
}
extension VersionParsing on String {
int toVersion() {
return int.tryParse(replaceAll(".", "")) ?? 0;
}
}