feat : module page

This commit is contained in:
2025-08-27 11:56:29 +03:30
parent 5ffda97e54
commit d3e5ab7d61
31 changed files with 1313 additions and 93 deletions

View File

@@ -0,0 +1,13 @@
import 'dart:math';
final _random = Random();
int randomInt(int min, int max) {
return min + _random.nextInt(max - min + 1);
}
double randomDouble(double min, double max) {
return min + _random.nextDouble() * (max - min);
}

View File

@@ -11,3 +11,4 @@ export 'network/network.dart';
export 'parser.dart';
export 'route_utils.dart';
export 'separator_input_formatter.dart';
export 'number_utils.dart';