mirror of
https://github.com/timepill/timepill-app.git
synced 2025-04-30 09:59:31 +08:00
156 lines
No EOL
4.8 KiB
JavaScript
156 lines
No EOL
4.8 KiB
JavaScript
import Color from '../style/color'
|
|
import {Icon} from '../style/icon'
|
|
|
|
function config() {
|
|
return {
|
|
root: {
|
|
bottomTabs: {
|
|
options: {
|
|
bottomTabs: {
|
|
titleDisplayMode: 'alwaysShow' // android
|
|
}
|
|
},
|
|
children: [{
|
|
stack: {
|
|
children: [{
|
|
component: {
|
|
name: 'Home',
|
|
options: {
|
|
topBar: {
|
|
// visible: false,
|
|
title: {
|
|
text: '首页'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}],
|
|
options: {
|
|
bottomTab: {
|
|
text: '首页',
|
|
icon: Icon.homeIcon,
|
|
|
|
// ios
|
|
selectedIcon: Icon.homeSelectedIcon,
|
|
|
|
// android
|
|
iconColor: '#ccc',
|
|
selectedIconColor: Color.primary
|
|
}
|
|
}
|
|
}
|
|
},{
|
|
stack: {
|
|
children: [{
|
|
component: {
|
|
name: 'Follow'
|
|
}
|
|
}],
|
|
options: {
|
|
bottomTab: {
|
|
text: '关注',
|
|
icon: Icon.followIcon,
|
|
|
|
// ios
|
|
selectedIcon: Icon.followSelectedIcon,
|
|
|
|
// android
|
|
iconColor: '#ccc',
|
|
selectedIconColor: Color.primary
|
|
}
|
|
}
|
|
}
|
|
},{
|
|
stack: {
|
|
children: [{
|
|
component: {
|
|
name: 'Write',
|
|
options: {
|
|
topBar: {
|
|
title: {
|
|
text: '写日记',
|
|
alignment: 'center' // android
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}],
|
|
options: {
|
|
bottomTab: {
|
|
text: '写日记',
|
|
icon: Icon.writeIcon,
|
|
|
|
// ios
|
|
selectedIcon: Icon.writeSelectedIcon,
|
|
|
|
// android
|
|
iconColor: '#ccc',
|
|
selectedIconColor: Color.primary
|
|
}
|
|
}
|
|
}
|
|
},{
|
|
stack: {
|
|
children: [{
|
|
component: {
|
|
name: 'Notification',
|
|
options: {
|
|
topBar: {
|
|
title: {
|
|
text: '提醒'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}],
|
|
options: {
|
|
bottomTab: {
|
|
text: '提醒',
|
|
icon: Icon.tipIcon,
|
|
|
|
// ios
|
|
selectedIcon: Icon.tipSelectedIcon,
|
|
|
|
// android
|
|
iconColor: '#ccc',
|
|
selectedIconColor: Color.primary
|
|
}
|
|
}
|
|
}
|
|
},{
|
|
stack: {
|
|
children: [{
|
|
component: {
|
|
name: 'User',
|
|
options: {
|
|
topBar: {
|
|
title: {
|
|
text: '我'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}],
|
|
options: {
|
|
bottomTab: {
|
|
text: '我',
|
|
icon: Icon.myIcon,
|
|
|
|
// ios
|
|
selectedIcon: Icon.mySelectIcon,
|
|
|
|
// android
|
|
iconColor: '#ccc',
|
|
selectedIconColor: Color.primary
|
|
}
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default {
|
|
config
|
|
} |