Results 16 comments of DevTiago

Any update on Laravel 8 support? Thanks

The answer from @luis901101 saved my day: just change the version from pubspec.yaml from `^0.6.1` to `0.6.0`

And i have another problem... that's my code: ``` try { await pusher.init( apiKey: pusherApiKey, cluster: pusherCluster, onConnectionStateChange: onConnectionStateChange, onError: onError, onEvent: onEvent, onSubscriptionError: onSubscriptionError, onDecryptionFailure: onDecryptionFailure, onMemberAdded: onMemberAdded, onMemberRemoved:...

Another test: Even if i try to connect on catch method: ``` ... } catch (e) { print(pusher.channels); print(pusher.connectionState); await pusher.connect(); } ``` the console prints: ``` I/flutter ( 7005):...

Same.. any development on this issue?

Same here! I can't align the rate bar to parent widget..

Well, until this isn't fixed i've user RatingBar.build inside an Align widget to center the rating bar. Don't forget to handle the itemSize to prevent your UI to break on...

+1 Im my case, the location never been updated. It detects location change but returns always the same coordinates.