Skip to content

Commit

Permalink
Merge pull request #137 from eurofurence/feature/ef28-styling
Browse files Browse the repository at this point in the history
feat: styling for EF28
  • Loading branch information
lukashaertel authored Aug 24, 2024
2 parents 0081626 + dbf28c0 commit 1dcd42d
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ module.exports = {
owner: "eurofurence",
version: "3.3.0",
orientation: "default",
icon: "./assets/platform/playstore.png",
icon: "./assets/platform/appicon.png",
userInterfaceStyle: "automatic",
scheme: "eurofurence",
splash: {
image: "./assets/platform/playstore.png",
image: "./assets/platform/splash.png",
resizeMode: "contain",
backgroundColor: "#035451",
backgroundColor: "#231F20",
},
updates: {
fallbackToCacheTimeout: 0,
Expand All @@ -36,11 +36,11 @@ module.exports = {
splash: {
resizeMode: "native",
image: "./assets/platform/splash.png",
backgroundColor: "#006459",
backgroundColor: "#231F20",
},
adaptiveIcon: {
foregroundImage: "./assets/platform/playstore.png",
backgroundColor: "#006459",
foregroundImage: "./assets/platform/appicon.png",
backgroundColor: "#231F20",
},
intentFilters: [
{
Expand Down Expand Up @@ -73,7 +73,7 @@ module.exports = {
},
web: {
bundler: "metro",
favicon: "./assets/platform/playstore.png",
favicon: "./assets/platform/appicon.png",
},
plugins: [
// Run sentry plugin only if auth token is given, otherwise the build crashes.
Expand Down
Binary file added assets/platform/appicon.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/platform/playstore.png
Binary file not shown.
Binary file modified assets/platform/splash.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/static/banner_ef27_logo.png
Binary file not shown.
Binary file removed assets/static/banner_ef27_narrow.png
Binary file not shown.
Binary file removed assets/static/banner_ef27_wide.png
Binary file not shown.
Binary file added assets/static/banner_logo.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/static/banner_narrow.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/static/banner_wide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/home/CountdownHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const CountdownHeader: FC<CountdownHeaderProps> = ({ style }) => {
<ImageBackground
key="banner"
style={styles.background}
source={assetSource(width < bannerBreakpoint ? "banner_ef27_narrow" : "banner_ef27_wide")}
source={assetSource(width < bannerBreakpoint ? "banner_narrow" : "banner_wide")}
contentFit="cover"
priority="high"
/>
Expand All @@ -75,7 +75,7 @@ export const CountdownHeader: FC<CountdownHeaderProps> = ({ style }) => {
titleVariant="shadow"
subtitleVariant="shadow"
/>
<Image style={styles.logo} source={assetSource("banner_ef27_logo")} contentFit="contain" priority="high" />
<Image style={styles.logo} source={assetSource("banner_logo")} contentFit="contain" priority="high" />
</View>
);
};
Expand Down

0 comments on commit 1dcd42d

Please sign in to comment.