Skip to content

Commit

Permalink
Merge pull request #525 from thornbill/logo-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
thornbill authored Aug 22, 2024
2 parents eae1d2e + af44e42 commit 752ddde
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const App = observer(({ skipLoadingScreen }) => {
const loadImages = () => {
const images = [
require('./assets/images/splash.png'),
require('./assets/images/logowhite.png')
require('./assets/images/logo-dark.png')
];
return images.map(image => Asset.fromModule(image).downloadAsync());
};
Expand Down
Binary file added assets/images/logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/logoblack.png
Binary file not shown.
Binary file removed assets/images/logowhite.png
Binary file not shown.
4 changes: 2 additions & 2 deletions screens/AddServerScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const AddServerScreen = () => {
style={styles.logoImage}
source={
rootStore.settingStore.theme.dark ?
require('../assets/images/logowhite.png') :
require('../assets/images/logoblack.png')
require('../assets/images/logo-dark.png') :
require('../assets/images/logo-light.png')
}
fadeDuration={0} // we need to adjust Android devices (https://facebook.github.io/react-native/docs/image#fadeduration) fadeDuration prop to `0` as it's default value is `300`
/>
Expand Down

0 comments on commit 752ddde

Please sign in to comment.