Dominik Vagala

Results 11 comments of Dominik Vagala

Thanks @metasoarous for explanation. I confirm it's now working with custom cookie and data-xid attribute :)

Same issue here on Android A possible workaround for the time being ``` class CurrentNativeOrientation { // there's a bug in the package when obtaining current orientation on android, so...

@pitazzo hey! Have you found a solution? I'm facing the same issue. A quick workaround is to add `Overlay` to `MaterialApp` but it doesn't feel right ```dart return MaterialApp( navigatorKey:...

@RafaelBarbosatec here is minimal reproducible example for this issue: ```dart import 'package:flutter/material.dart'; import 'package:tutorial_coach_mark/tutorial_coach_mark.dart'; TargetFocus target = TargetFocus( identify: "Target 1", keyTarget: GlobalKey(), contents: [TargetContent()], ); final navigatorKey = GlobalKey();...

Btw, if someone here is also looking for a solution, I found this new up-to-date [simple_sensor](https://pub.dev/packages/simple_sensor) package, and it has these absolute values. Update: no, it doesn't have usable pitch...

Okay, so it turned out the `shrinkResources` needs to be `false`. I'm not sure if it can be properly fixed, but maybe it would be good to have that in...

I've been trying this the past few days, compiling Pytorch for android C++ and linking them in cmake, but with no luck. I couldn't get past a `undefined reference` errors....

@cyrillkuettel Thank you! This was the right direction, I've tried it now, tweaked it a bit and it's working ❤️ My problem was that I was trying to follow [this](https://pytorch.org/mobile/android/#building-pytorch-android-from-source)...

@cyrillkuettel Sure! I've made an example [project here](https://github.com/dvagala/pytorch-flutter-FFI-example) Yes, it's running on both Android and iOS, and all the code is shared. That's the beauty of Flutter :)