Skip to content

Commit 67eca8b

Browse files
committed
setup fonts, theme, typography
1 parent 103e772 commit 67eca8b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+475
-66
lines changed

.github/workflows/ci.yml

Whitespace-only changes.

.github/workflows/release.yml

Whitespace-only changes.

App.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ import {
1111
SafeAreaProvider,
1212
useSafeAreaInsets,
1313
} from 'react-native-safe-area-context';
14+
import FontTest from './src/app/screens/FontTest.tsx';
1415

1516
function App() {
1617
const isDarkMode = useColorScheme() === 'dark';
1718

1819
return (
1920
<SafeAreaProvider>
2021
<StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
22+
<FontTest />;
2123
<AppContent />
2224
</SafeAreaProvider>
2325
);
@@ -28,10 +30,7 @@ function AppContent() {
2830

2931
return (
3032
<View style={styles.container}>
31-
<NewAppScreen
32-
templateFileName="App.tsx"
33-
safeAreaInsets={safeAreaInsets}
34-
/>
33+
<NewAppScreen templateFileName="App.tsx" safeAreaInsets={safeAreaInsets} />
3534
</View>
3635
);
3736
}
411 KB
Binary file not shown.
408 KB
Binary file not shown.
402 KB
Binary file not shown.
410 KB
Binary file not shown.
267 KB
Binary file not shown.

android/link-assets-manifest.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"migIndex": 1,
3+
"data": [
4+
{
5+
"path": "assets/fonts/Inter-Bold.ttf",
6+
"sha1": "9461e7c083137c2abe6d198f784fb0d341a527a1"
7+
},
8+
{
9+
"path": "assets/fonts/Inter-Medium.ttf",
10+
"sha1": "c1d25d8c10adb45a970e71c387bbd6380f10992d"
11+
},
12+
{
13+
"path": "assets/fonts/Inter-Regular.ttf",
14+
"sha1": "6e3430f906a4b42b4b63fd8f33e498a43d9f8d84"
15+
},
16+
{
17+
"path": "assets/fonts/Inter-SemiBold.ttf",
18+
"sha1": "b4bdaf6bdd6a479b46c452a7bbae13f5cb2079bf"
19+
},
20+
{
21+
"path": "assets/fonts/JetBrainsMono-Regular.ttf",
22+
"sha1": "50fc729787e6133b511444b185c7397bd3ccd3da"
23+
}
24+
]
25+
}

assets/fonts/Inter-Bold.ttf

411 KB
Binary file not shown.

0 commit comments

Comments
 (0)