重命名消息页面

将消息页面重命名为通知页面,并将相关 ViewModel 和 Composable 函数也进行了重命名。
This commit is contained in:
2024-09-06 08:28:57 +08:00
parent 1e12eb42f7
commit 633e9a3945
7 changed files with 19 additions and 34 deletions

View File

@@ -29,9 +29,9 @@ import com.aiosman.riderpro.LocalNavController
import com.aiosman.riderpro.LocalSharedTransitionScope
import com.aiosman.riderpro.ui.account.AccountEditScreen2
import com.aiosman.riderpro.ui.comment.CommentsScreen
import com.aiosman.riderpro.ui.favourite.FavouriteScreen
import com.aiosman.riderpro.ui.favourite.FavouriteNoticeScreen
import com.aiosman.riderpro.ui.follower.FollowerListScreen
import com.aiosman.riderpro.ui.follower.FollowerNotificationScreen
import com.aiosman.riderpro.ui.follower.FollowerNoticeScreen
import com.aiosman.riderpro.ui.follower.FollowingListScreen
import com.aiosman.riderpro.ui.gallery.OfficialGalleryScreen
import com.aiosman.riderpro.ui.gallery.OfficialPhotographerScreen
@@ -39,7 +39,7 @@ import com.aiosman.riderpro.ui.gallery.ProfileTimelineScreen
import com.aiosman.riderpro.ui.index.IndexScreen
import com.aiosman.riderpro.ui.index.tabs.message.NotificationsScreen
import com.aiosman.riderpro.ui.index.tabs.search.SearchScreen
import com.aiosman.riderpro.ui.like.LikeScreen
import com.aiosman.riderpro.ui.like.LikeNoticeScreen
import com.aiosman.riderpro.ui.location.LocationDetailScreen
import com.aiosman.riderpro.ui.login.EmailSignupScreen
import com.aiosman.riderpro.ui.login.LoginPage
@@ -158,10 +158,10 @@ fun NavigationController(
CommentsScreen()
}
composable(route = NavigationRoute.Likes.route) {
LikeScreen()
LikeNoticeScreen()
}
composable(route = NavigationRoute.Followers.route) {
FollowerNotificationScreen()
FollowerNoticeScreen()
}
composable(
route = NavigationRoute.NewPost.route,
@@ -219,7 +219,7 @@ fun NavigationController(
ChangePasswordScreen()
}
composable(route = NavigationRoute.FavouritesScreen.route) {
FavouriteScreen()
FavouriteNoticeScreen()
}
composable(route = NavigationRoute.NewPostImageGrid.route) {
NewPostImageGridScreen()