Use new logo

This commit is contained in:
Bill Thornton 2024-08-22 11:53:37 -04:00
parent eae1d2e922
commit af44e42326
6 changed files with 3 additions and 3 deletions

2
App.js
View File

@ -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());
};

BIN
assets/images/logo-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

View File

@ -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`
/>