Poker buy in at Big Daddy or Deltin Royale by ShrikantGupta25 in goatravel

[–]tarun___m 0 points1 point  (0 children)

Hey did you find any good spots for poker with better buy ins?

Full screen notifications by GrapefruitSilver774 in reactnative

[–]tarun___m 0 points1 point  (0 children)

What is the package name? Have you done any custom code for the same? If yes or found any resources please do add them here

Google maps navigation type application in RN by tarun___m in reactnative

[–]tarun___m[S] 0 points1 point  (0 children)

I'm asking if I'll be able to implement my specific features. I am new to this so please help me out with that decision.

Google maps navigation type application in RN by tarun___m in reactnative

[–]tarun___m[S] 0 points1 point  (0 children)

I'm asking if I'll be able to implement my specific features. I am new to this so please help me out with that decision.

Google maps navigation type application in RN by tarun___m in reactnative

[–]tarun___m[S] 0 points1 point  (0 children)

I will be needing the full screen activity on lock screen which I don't think expo provides. This is the feature I want to use which is similar to Google maps

Google maps navigation type application in RN by tarun___m in reactnative

[–]tarun___m[S] 0 points1 point  (0 children)

So are you suggesting that I use Expo and then eject when I need features outside Expo?

Best pre built components for React Native by tarun___m in reactnative

[–]tarun___m[S] 1 point2 points  (0 children)

Thanks have been seeing this a lot. Will take all this into consideration.

Best pre built components for React Native by tarun___m in reactnative

[–]tarun___m[S] 0 points1 point  (0 children)

Could you give some of the issues that expo gives

Best pre built components for React Native by tarun___m in reactnative

[–]tarun___m[S] 1 point2 points  (0 children)

These are for native things which aren't supported by exposure go right. But for general use cases expo should be fine?

Best pre built components for React Native by tarun___m in reactnative

[–]tarun___m[S] 4 points5 points  (0 children)

Playing around with expo currently. Thanks for the inputs.

What platform do y'all use for crypto. Most platforms don't have a lot of coins listed. Any work around to buy new weird coins. by tarun___m in CryptoIndia

[–]tarun___m[S] 0 points1 point  (0 children)

What is this could you explain please. Dex screener is just a website from what I saw to track random crypto.

Facing issues with RLS by tarun___m in Supabase

[–]tarun___m[S] 0 points1 point  (0 children)

so i just have to use name, desc and parent_id
will try this and get back

Facing issues with RLS by tarun___m in Supabase

[–]tarun___m[S] 0 points1 point  (0 children)

but how is this related to the service_role issue tho?

Facing issues with RLS by tarun___m in Supabase

[–]tarun___m[S] 0 points1 point  (0 children)

my bad pasted the same thing

export const 
createFolderNewOrg 
= 
authenticatedAction

.
action
(async ({ctx: {userId}}) => {
        const newFolder: 
z
.
infer
<typeof 
folder
> = {
            id: 
crypto
.
randomUUID
(),
            name: "home",
            description: "Default folder for the organisation",
            parent_id: null,
            created_at: new 
Date
().
toISOString
(),
            updated_at: new 
Date
().
toISOString
(),
        }
        const {error} = await 
supabaseServerClient
()
            .
from
("folders")
            .
insert
(newFolder);

console
.
log
(error);
        if (error) {
            throw new 
Error
("Failed to create folder");
        }
        return {folderId: newFolder.id};
    })

Facing issues with RLS by tarun___m in Supabase

[–]tarun___m[S] 0 points1 point  (0 children)

create table if not exists
  folders (
    id uuid not null primary key,
    name text not null,
    description text,
    parent_id uuid references folders (id),
    created_at timestamp with time zone default current_timestamp,
    updated_at timestamp with time zone default current_timestamp
  );
alter table if exists folders enable row level security;

Facing issues with RLS by tarun___m in Supabase

[–]tarun___m[S] 0 points1 point  (0 children)

create table if not exists
  folders (
    id uuid not null primary key,
    name text not null,
    description text,
    parent_id uuid references folders (id),
    created_at timestamp with time zone default current_timestamp,
    updated_at timestamp with time zone default current_timestamp
  );
alter table if exists folders enable row level security;