Caffo17

Results 3 comments of Caffo17

@MagdyEl-Sayed I've experienced the same issue and found a solution. Did you override `onRequestPermissionsResult` in your `MainActivity`? My fix is adding a fallback on a not managed `requestCode` like this...

I solved wrapping the MaterialApp's `home` with a `Builder` ```Dart return MaterialApp( localizationsDelegates: context.localizationDelegates, supportedLocales: context.supportedLocales, locale: context.locale, home: Builder( builder: (context) { return MyWidget(); }, ), ); ``` I...

Opening the same links in Chrome App, on the same device, the videos work correctly without any problem