Ishtmeet Singh

Results 9 comments of Ishtmeet Singh

@zhakkarn Actually, it's a good practice to use `some_attr` instead of `some_attr={true}`. I am pretty sure all campers who have reached react's curriculum are clever enough to find out if...

@jtkeyva @kaushik1710 This probably happened because you didn't specify the versions in the pubspec.yaml file. Permission handler had a lot of hotfixes lately, and removed the class PermissionGroup in the...

> Thank you @Ishtmeet-Singh Your suggestion got rid of the permissions error but now I'm getting more errors such as: > > > fatal error: 'speech_recognition/speech_recognition-Swift.h' file not found >...

> Thank you very much @Ishtmeet-Singh I just keep getting new issues every time I fix one. Now it's onesignal. Any ideas how to fix this? I'm going crazy over...

@jtkeyva This looks fine, can you copy paste the error log from the terminal too? Or screenshots will help

Hi @lucaspicinini, thanks for your work. I have been quite busy with some other work. While I've been considering the translation aspect, it's important to note that this book's content...

@souhub Thank you.

@fmsrodrigues Instead of ```rs pub fn connection_string_without_db(&self) -> String { format!( "postgres://{}:{}@{}:{}/postgres", self.username, self.password, self.host, self.port ) } ``` You need to return this instead ```rs format!("postgres://{}:{}@{}:{}", self.username, self.password, self.host,...

Also we're running a db migration inside `configure_database()` ```rs sqlx::migrate!("./migrations") .run(&connection_pool) .await .expect("Failed to migrate the database"); ```