phamconganh

Results 11 comments of phamconganh

I use phaser v3.55 with angular 12, it's still exist, although use "skipLibCheck": true ``` { "compileOnSave": false, "compilerOptions": { "baseUrl": "./", "outDir": "./dist/out-tsc", "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitReturns": true,...

Same issue here. My app on ios received this error 144 times in half a month

It's appear on Galaxy Tab A (8.0'', 2019) device. On small device, it is not appear. I think it is by 0.5 pixel when you calculate

I think you can use indicatorPosition: 0 in the TimelineThemeData

[test6.musicxml.zip](https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/files/6110460/test6.musicxml.zip) The XML file which I get error

I think this problem is due to rich text. You can try ``` Container( color: Colors.green, child: Text.rich(TextSpan(children: [ WidgetSpan(child: Container(height: 50, width: 40, color: Colors.red)), // const TextSpan(text: '\n'),...

The hotfix is add `children: const [WidgetSpan(child: SizedBox.shrink())],` to line 48 in `flutter_html/lib/src/builtins/text_builtin.dart` to reset line height `InlineSpan` to default. The PR #1395 ``` import 'package:flutter/material.dart'; import 'package:flutter_html/flutter_html.dart'; import 'package:flutter_html/src/utils.dart';...

@lironzemingo check if is android and just use this ``` final inAppPurchaseAndroidPlatform = InAppPurchase.instance as InAppPurchaseAndroidPlatform; // ignore: invalid_use_of_visible_for_testing_member final billingClientManager = inAppPurchaseAndroidPlatform.billingClientManager; billingClientManager.runWithClient( (BillingClient client) => client.queryPurchaseHistory(ProductType.inapp), ); ```

I think you can fix with using socket.on('error' ,onError); I don't know why socket.onError not work

@ikbendewilliam i tried you PR to [vector_graphics](https://github.com/dnfield/vector_graphics) with some small fixes, it shows the nested svgs but in the wrong position (child svg not in the right position) ![Screen Shot...