balaji101010

Results 15 comments of balaji101010

I temporarily used this library to fix my api issues https://pub.dev/packages/retry whenever there is timeout

``` static shareLink(BuildContext context, String url, {String? message, String? subject}) async { final RenderBox? box = context.findRenderObject() as RenderBox?; await Share.share(message!, sharePositionOrigin: box!.localToGlobal(Offset.zero) & box.size); } ``` I am also...

Finally I fixed it ``` static shareLink(BuildContext context, {String? message}) async { Size size = MediaQuery.of(context).size; Share.share( message!, sharePositionOrigin: Rect.fromLTWH(0, 0, size.width, size.height / 2), ); } ``` From this...

I'm facing the same issue ``` * What went wrong: Execution failed for task ':app:processMockReleaseGoogleServices'. > File google-services.json is missing. The Google Services Plugin cannot function without it. ``` ```...

Can I use this library and get same performance as default slivers? @Kavantix

I think the author went to vacation or something lol

Same issue for me

ITMS-90683: Missing purpose string in Info.plist - Your app’s code references one or more APIs that access sensitive user data, or the app has one or more entitlements that permit...