Bahman World

Results 9 comments of Bahman World

You can use following code ```java @Override public void onProgress(String message) { try { long current = Functions.timeToMillisecond(StringUtils.substringBetween(message, "time=", "")); percent = (int)((current * 100) / duration); progress.setProgress(percent); } catch...

1) `value={[0, 100]}` => `value` will be an array ```js onValueChange={(value: number[]) => { console.log(value[0] , '', value[1]) }} ``` --- 2) `value={100}` => `value` will be a number ```js...

Same issue occurred for me while making `release` on some nodejs modules not just `react-native-keychain`

thanx @Lazhor But that's not working with the Nextjs app routing system. Can you help me a little more?

> > I'm also wondering if this is possible. Did you make any attempts to implement it? @bahmanworld I was trying to integrate socketIO once per day last month, nothing...

Thank you @mochamadsatria for your great advice , but i've already tried both solutions.. could you explain more what i miss? However i never try to integrating socketIO with nextjs...

⚡️ Now we are talking Thanks @darrachequesne , It works perfectly 🌺

This is an excellent library 🫦 Thank you guys

We want 😎 something like this in `schema.prisma` before using `prisma generate`: ```prisma model User { id String @id @default(auto()) @map("_id") @db.ObjectId email String? @unique name String currentAge String? @deprecated("Use...