Christopher Meyer
Christopher Meyer
Toasted works by extending the `Vue.prototype`. This breaks in Vue3, but you can work around it as follows: ```js const prevPrototype = Vue.prototype Vue.prototype = {} Vue.use(Toasted, {/*...*/}) Object.assign(Vue.config.globalProperties, Vue.prototype)...
I'm having the same issue as @kirualex . A user in northwestern Louisiana is having their time zone detected as EDT instead of CDT. Is there a fix or workaround?...
@mj1856 I like that APTimeZones works offline. It's just too bad about the reliability. I ended up writing a CLLocation category ([see the gist](https://gist.github.com/chriscdn/1cd899fc47fb4b887bf5)) that does a reverse geocode lookup....
Any chance you're using [get](https://pub.dev/packages/get)? I have the same issue when using `get` to wrap my root widget.
Is it possible you're deleting the items in one thread and the items that persist are being managed and saved in another thread?
> Is this issue happening due to this? I don't think so. In the end both methods use the `NSManagedObjectContext` for the current thread, which is the same if you're...
I finally added the methods to fetch in a background thread and return the results in the main thread. I'm still considering RHExtendedManagedObject if and how I'd like to integrate...
@sleith I've also put my app store purchases into a similar weird state during development. For whatever reason, I was using my AppleID as my sandbox user. I have no...
I believe this is caused by the `crossAxisAlignment` being set to `CrossAxisAlignment.stretch`. https://github.com/Pyozer/introduction_screen/blob/ed7fc561cc2fe4beb57319dfcbdeb8cf05221cd6/lib/src/ui/intro_page.dart#L85 Try wrapping your button in a [Center](https://api.flutter.dev/flutter/widgets/Center-class.html), which will render the button at its intrinsic size. E.g.,...