16 lines
415 B
Dart
16 lines
415 B
Dart
import 'dart:math';
|
|
|
|
import 'package:localsend_app/gen/strings.g.dart';
|
|
|
|
String generateRandomAlias() {
|
|
final random = Random();
|
|
final adj = t.aliasGenerator.adjectives;
|
|
final fruits = t.aliasGenerator.fruits;
|
|
|
|
// The combination of both is locale dependent too.
|
|
return t.aliasGenerator.combination(
|
|
adjective: adj[random.nextInt(adj.length)],
|
|
fruit: fruits[random.nextInt(fruits.length)],
|
|
);
|
|
}
|