diff --git a/src/page/FollowPage.js b/src/page/FollowPage.js index 849161e..3fc6ba5 100644 --- a/src/page/FollowPage.js +++ b/src/page/FollowPage.js @@ -27,7 +27,7 @@ export default class FollowPage extends Component { }, rightButtons: [{ id: 'followIcon', - icon: Icon.followIcon, + icon: Icon.navButtonUserList, color: Color.primary // android }] diff --git a/src/style/icon.js b/src/style/icon.js index 26d95f0..1310fa2 100644 --- a/src/style/icon.js +++ b/src/style/icon.js @@ -30,7 +30,8 @@ let Icon = { navButtonBack: null, navButtonOpen: null, - navButtonTime: null + navButtonTime: null, + navButtonUserList: null, }; const outline = Platform.OS === 'ios' ? '-outline' : ''; @@ -68,8 +69,8 @@ async function loadIcon() { Ionicons.getImageSource(Platform.OS === 'ios' ? 'md-arrow-back' : 'md-arrow-back', 26, iconColor), Ionicons.getImageSource(Platform.OS === 'ios' ? 'ios-open-outline' : 'md-open', 26, iconColor), - Ionicons.getImageSource(Platform.OS === 'ios' ? 'md-time' : 'md-time', 26, iconColor) - + Ionicons.getImageSource(Platform.OS === 'ios' ? 'md-time' : 'md-time', 26, iconColor), + Ionicons.getImageSource(Platform.OS === 'ios' ? 'ios-contacts' : 'ios-contacts', 26, iconColor), ]); let index = 0;