Skip to content

Commit 6670eec

Browse files
committed
minor fix
1 parent 598215c commit 6670eec

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

app.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"android": {
1515
"adaptiveIcon": {
1616
"backgroundColor": "#ffffff"
17-
}
17+
},
18+
"package": "com.emon5122.reactnativeapp"
1819
},
1920
"web": {
2021
"bundler": "metro",

app/(tabs)/rank.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ const RankScreen = () => {
88
style={{ flex: 1, justifyContent: "center", alignItems: "center" }}
99
>
1010
<Text>Not implemented yet!</Text>
11-
<View style={{ width: 20, height: 20 }}>
12-
<DynamicSvgLoader link={flag("Brazil")?.flag!} />
13-
</View>
11+
<DynamicSvgLoader link={flag("Argentina")?.flag!} />
1412
</View>
1513
);
1614
};

assets/images/splashscreen_logo.png

1.43 KB
Loading

components/ui/dyanmicSvgLoader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const DynamicSvgLoader = ({ link }: { link: string }) => {
2929
return (
3030
<>
3131
{svgContent ? (
32-
<SvgXml xml={svgContent} style={{ flex: 1, display: "flex" }} />
32+
<SvgXml xml={svgContent} />
3333
) : (
3434
<Text>Failed to load SVG</Text>
3535
)}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@react-navigation/bottom-tabs": "^7.2.0",
2323
"@react-navigation/native": "^7.0.14",
2424
"expo": "~52.0.26",
25-
"expo-blur": "~14.0.2",
25+
"expo-blur": "~14.0.3",
2626
"expo-constants": "~17.0.4",
2727
"expo-font": "~13.0.3",
2828
"expo-haptics": "~14.0.1",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)