From cc477f7a2c3fcce6f7cd887fd353bda735f196de Mon Sep 17 00:00:00 2001
From: mx1700 <mx1700@gmail.com>
Date: Sun, 4 Aug 2019 21:38:58 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=B3=E6=B3=A8=E6=97=A5?=
 =?UTF-8?q?=E8=AE=B0=E9=A1=B5=E5=8F=B3=E4=B8=8A=E8=A7=92=E5=9B=BE=E6=A0=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/page/FollowPage.js | 2 +-
 src/style/icon.js      | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

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;