File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
demos/react-native-supabase-group-chat Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ const config: ExpoConfig = {
2929 } ,
3030 ios : {
3131 supportsTablet : true ,
32- bundleIdentifier : "com.powersync.example "
32+ bundleIdentifier : "com.powersync.powerchat "
3333 } ,
3434 android : {
3535 adaptiveIcon : {
3636 foregroundImage : "./assets/adaptive-icon.png" ,
3737 backgroundColor : "#ffffff"
3838 } ,
39- package : "com.powersync.example "
39+ package : "com.powersync.powerchat "
4040 } ,
4141 extra : {
4242 eas : {
Original file line number Diff line number Diff line change 11import { createTamagui } from "@tamagui/core" ;
22import { shorthands } from "@tamagui/shorthands" ;
3+ import { createInterFont } from "@tamagui/font-inter" ;
34import { themes , tokens } from "@tamagui/themes" ;
45import { config } from "@/lib/config" ;
56
7+ const heading = createInterFont ( ) ;
8+ const body = createInterFont ( ) ;
9+
610export const appConfig = createTamagui ( {
711 themes,
812 defaultTheme : "dark" ,
@@ -15,7 +19,11 @@ export const appConfig = createTamagui({
1519 brand2 : config . brand2
1620 }
1721 } ,
18- shorthands
22+ shorthands,
23+ fonts : {
24+ heading,
25+ body,
26+ }
1927} ) ;
2028
2129export default appConfig ;
You can’t perform that action at this time.
0 commit comments