make search button say search

This commit is contained in:
zoe 2022-10-02 09:21:45 +02:00
parent 25cf6e770e
commit 76e29ce7f5
2 changed files with 1 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class _MainScaffoldState extends State<MainScaffold> {
NavigationDestination( NavigationDestination(
icon: const Icon(Icons.forum), label: "timeline".i18n()), icon: const Icon(Icons.forum), label: "timeline".i18n()),
NavigationDestination( NavigationDestination(
icon: const Icon(Icons.search), label: "chat".i18n()), icon: const Icon(Icons.search), label: "search".i18n()),
NavigationDestination( NavigationDestination(
icon: Icon((unreadNotifs >= 1) icon: Icon((unreadNotifs >= 1)
? Icons.notifications_active ? Icons.notifications_active

View File

@ -18,7 +18,6 @@ class NameDisplay extends StatelessWidget {
String newtext = content; String newtext = content;
newtext = newtext newtext = newtext
.replaceAll("~", r"\~") .replaceAll("~", r"\~")
.replaceAll("_", r"\_")
.replaceAll("*", r"\*") .replaceAll("*", r"\*")
.replaceAll("[", r"\[") .replaceAll("[", r"\[")
.replaceAll("]", r"\]") .replaceAll("]", r"\]")