Refactor profile addition flow

This commit is contained in:
problematicconsumer
2023-07-26 14:17:11 +03:30
parent cad4e47ee5
commit d741b7a427
13 changed files with 340 additions and 223 deletions

View File

@@ -72,7 +72,7 @@ class Profile with _$Profile {
return Profile(
id: const Uuid().v4(),
active: false,
name: title,
name: title.isBlank ? "Remote Profile" : title,
url: url,
lastUpdate: DateTime.now(),
options: options,