mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
24 lines
846 B
Dart
24 lines
846 B
Dart
import 'dart:math';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
extension StringExtension on String {
|
|
String capitalized() {
|
|
return "${this[0].toUpperCase()}${this.substring(1)}";
|
|
}
|
|
}
|
|
|
|
Future<String> generateName() async {
|
|
final randomThing = Random();
|
|
final adjectiveStringRaw =
|
|
await rootBundle.loadString('assets/text/Wallet_Adjectives.txt');
|
|
final nounStringRaw =
|
|
await rootBundle.loadString('assets/text/Wallet_Nouns.txt');
|
|
final adjectives = List<String>.from(adjectiveStringRaw.split('\n'));
|
|
final nouns = List<String>.from(nounStringRaw.split('\n'));
|
|
final chosenAdjective = adjectives[randomThing.nextInt(adjectives.length)];
|
|
final chosenNoun = nouns[randomThing.nextInt(nouns.length)];
|
|
final returnString =
|
|
chosenAdjective.capitalized() + ' ' + chosenNoun.capitalized();
|
|
return returnString;
|
|
}
|