perawallet / pera-wallet

Source code for Pera Wallet, simply the best Algorand wallet.
https://perawallet.app
Other
178 stars 62 forks source link

Fix Bottom Navigation Titles #30

Closed jeremyv3 closed 2 years ago

jeremyv3 commented 2 years ago

android/app/src/main/res/menu/bottom_navigation_menu.xml

android:title's for contactsFragment and notificationCenterFragment are reversed. Move string for History to Contacts and Contacts to History.

The corrected values are below <item android:id="@id/contactsFragment" android:title="@string/contacts" />

<item
    android:id="@id/notificationCenterFragment"
    android:title="@string/history" />

Closing PR that was added.

taylanpince commented 2 years ago

Thank you