mirror of
https://github.com/timepill/timepill-app.git
synced 2025-04-30 09:59:31 +08:00
修改关注日记页右上角图标
This commit is contained in:
parent
ab77145596
commit
cc477f7a2c
2 changed files with 5 additions and 4 deletions
|
@ -27,7 +27,7 @@ export default class FollowPage extends Component {
|
|||
},
|
||||
rightButtons: [{
|
||||
id: 'followIcon',
|
||||
icon: Icon.followIcon,
|
||||
icon: Icon.navButtonUserList,
|
||||
|
||||
color: Color.primary // android
|
||||
}]
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue