Igor Randjelovic

Results 471 comments of Igor Randjelovic
trafficstars

The main issue is the signing issue (the rest are notes/warnings and not causing the build to fail). The workaround is to put the following inside `App_Resources/iOS/Podfile` ```ruby post_install do...

@kefahB open the project in XCode (`platforms/ios/.xcworkspace`) and try running from XCode, and see what errors you get. The above fix (updated comment with an alternative) should generally work, but...

Hi, thanks for starting this! I do have one question, which I couldn't find a clear answer to in the nuxt docs, is `@nuxt/kit` really necessary as a `dependency`, or...

See #715 for Nuxt 3 support progress

Double check you set up the tailwind config correctly, it has a `content` array which tells TailwindCSS where to look for your source code & generate the classes based on...

I have attempted to create a lifecycle diagram, but I don't think it is clear enough! Feedback welcome ![lifecycle](https://user-images.githubusercontent.com/879060/40776838-395b889a-64cc-11e8-9c52-f30316dc031c.png)

@posva Hey! Could you give me some feedback on the diagram, I went purely based on the docs - and I do think it can be improved!

@posva no worries, take your time! 👍

@MrRossBennett i just ran into the same issue. I managed to work around it for now (still working out the edge cases and some weirdness), by wrapping a portal in...

@GMolini the `#scrollableDiv` isn't actually scrollable, it's the parent element that has overflow ```js const container = document.getElementById("scrollableDiv"); const options = { container: container.parentElement // ... } // ... ```...