File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
demos/react-native-supabase-group-chat Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ const config: ExpoConfig = {
2222 splash : {
2323 image : './assets/splash.png' ,
2424 resizeMode : 'contain' ,
25- backgroundColor : '#ffffff '
25+ backgroundColor : '#cb62ff '
2626 } ,
2727 updates : {
2828 url : `https://u.expo.dev/${ projectId } `
@@ -34,10 +34,13 @@ const config: ExpoConfig = {
3434 android : {
3535 adaptiveIcon : {
3636 foregroundImage : './assets/adaptive-icon.png' ,
37- backgroundColor : '#ffffff '
37+ backgroundColor : '#cb62ff '
3838 } ,
3939 package : 'com.powersync.powerchat'
4040 } ,
41+ web : {
42+ bundler : 'metro' ,
43+ } ,
4144 extra : {
4245 eas : {
4346 projectId
Original file line number Diff line number Diff line change 1010 "ios" : " expo run:ios" ,
1111 "web" : " expo start --web --clear" ,
1212 "doc" : " pnpx expo-doctor@latest" ,
13- "format" : " prettier --write ." ,
1413 "prebuild" : " expo prebuild --platform ios --clean --no-install" ,
1514 "build:simulator" : " pnpx eas-cli build --profile simulator --platform ios --local" ,
1615 "build:development" : " pnpx eas-cli build --profile development --platform ios --local" ,
Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ export function SwipeableRow({
8080
8181 function close ( ) {
8282 ref . current ?. close ( ) ;
83- ref . current ;
8483 }
8584
8685 return rightActions ? (
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import { createInterFont } from '@tamagui/font-inter';
44import { themes , tokens } from '@tamagui/themes' ;
55import { config } from '@/lib/config' ;
66
7- const heading = createInterFont ( ) ;
8- const body = createInterFont ( ) ;
7+ const headingFont = createInterFont ( ) ;
8+ const bodyFont = createInterFont ( ) ;
99
1010export const appConfig = createTamagui ( {
1111 themes,
@@ -21,8 +21,8 @@ export const appConfig = createTamagui({
2121 } ,
2222 shorthands,
2323 fonts : {
24- heading,
25- body
24+ heading : headingFont ,
25+ body : bodyFont
2626 }
2727} ) ;
2828
You can’t perform that action at this time.
0 commit comments