This commit is contained in:
2023-11-30 20:28:03 +08:00
parent 5786534480
commit b9d4cbef5e
3 changed files with 242 additions and 265 deletions

View File

@ -604,4 +604,11 @@ class HomeUIModel extends BaseUIModel {
}
return "";
}
handleTitle(String? title) {
if (title == null) return "";
title = title.replaceAll("", "[ ");
title = title.replaceAll("", " ] ");
return title;
}
}