Skip to content

Commit

Permalink
优化一些沉浸的细节
Browse files Browse the repository at this point in the history
  • Loading branch information
czy0729 committed Sep 5, 2019
1 parent 5cf2e5f commit e83bcdf
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion components/status-bar-events.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @Author: czy0729
* @Date: 2019-08-11 14:02:16
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-05 16:01:32
* @Last Modified time: 2019-09-05 19:29:28
*/
import React from 'react'
import { StatusBar } from 'react-native'
Expand Down
2 changes: 1 addition & 1 deletion constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @Author: czy0729
* @Date: 2019-02-22 01:25:31
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-05 16:52:20
* @Last Modified time: 2019-09-05 18:59:07
*/
import { Platform } from 'react-native'
import Constants from 'expo-constants'
Expand Down
4 changes: 2 additions & 2 deletions screens/discovery/index/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: czy0729
* @Date: 2019-03-22 08:46:49
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-05 16:31:38
* @Last Modified time: 2019-09-05 18:58:24
*/
import React from 'react'
import PropTypes from 'prop-types'
Expand Down Expand Up @@ -43,7 +43,7 @@ class Discovery extends React.Component {
const { _loaded } = $.home
return (
<>
<StatusBarEvents backgroundColor={_.colorBg} />
<StatusBarEvents backgroundColor='transparent' />
{_loaded ? (
<ListView
style={_.container.screen}
Expand Down
4 changes: 2 additions & 2 deletions screens/discovery/random/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: czy0729
* @Date: 2019-06-22 15:38:01
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-05 16:12:31
* @Last Modified time: 2019-09-05 18:58:36
*/
import React from 'react'
import PropTypes from 'prop-types'
Expand Down Expand Up @@ -35,7 +35,7 @@ class Random extends React.Component {
const { _loaded } = $.random
return (
<>
<StatusBarEvents backgroundColor={_.colorBg} />
<StatusBarEvents backgroundColor='transparent' />
{_loaded ? <List /> : <Loading style={_.container.screen} />}
</>
)
Expand Down
4 changes: 2 additions & 2 deletions screens/login/auth/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: czy0729
* @Date: 2019-03-31 10:25:46
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-05 16:15:15
* @Last Modified time: 2019-09-05 18:58:51
*/
import React from 'react'
import { View } from 'react-native'
Expand Down Expand Up @@ -33,7 +33,7 @@ class Auth extends React.Component {
const { navigation } = this.props
return (
<View style={[_.container.column, { backgroundColor: _.colorBg }]}>
<StatusBarEvents backgroundColor={_.colorBg} />
<StatusBarEvents backgroundColor='transparent' />
<IconTabsHeader
style={_.header.left}
name='setting'
Expand Down
4 changes: 2 additions & 2 deletions screens/tinygrail/overview/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: czy0729
* @Date: 2019-08-25 19:12:19
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-03 21:03:26
* @Last Modified time: 2019-09-05 19:17:27
*/
import React from 'react'
import { View } from 'react-native'
Expand Down Expand Up @@ -63,7 +63,7 @@ class Tinygrail extends React.Component {
)
})

hm('tinygrail', title)
hm('tinygrail/overview', title)
}

render() {
Expand Down
4 changes: 2 additions & 2 deletions screens/tinygrail/search/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: czy0729
* @Date: 2019-09-03 21:52:01
* @Last Modified by: czy0729
* @Last Modified time: 2019-09-04 00:33:01
* @Last Modified time: 2019-09-05 19:17:38
*/
import React from 'react'
import { StyleSheet, View } from 'react-native'
Expand Down Expand Up @@ -35,7 +35,7 @@ class TinygrailSearch extends React.Component {
const { $ } = this.context
$.init()

hm('tinygrailSearch', title)
hm('tinygrail/search', title)
}

render() {
Expand Down

0 comments on commit e83bcdf

Please sign in to comment.