Thobias P Silva

Results 10 comments of Thobias P Silva

I found a way to solve it, but I don't know if it's the best I added a variable to control the current state `pushing`, I change it to true...

> This error persist on v6? I looked at the current code and it follows the same without changes. What do you think of my previous suggestion? I based it...

Use the PodPlayerLabels on PodVideoPlayer, see the example: ```dart PodVideoPlayer( controller: controller, podPlayerLabels: const PodPlayerLabels( play: 'Play label customized', loopVideo: 'Loop label', quality: 'Quality label', playbackSpeed: 'Speed label', ), )...

Estou com o mesmo problema com o mesmo ambiente

When I generate the Privacy Report, in the Errors Encountered session, it shows 'Missing an expected key: `NSPrivacyCollectedDataTypes - Runner.app/Frameworks/rive_common.framework/rive_common_privacy.bundle/PrivacyInfo.xcprivacy` . Using: `rive: 0.13.4`

I found a solution by implementing this method natively: ```kotlin private fun openBrowser(uriString: String?) { uriString?.let { val emptyBrowserIntent = Intent(Intent.ACTION_VIEW).apply { addCategory(Intent.CATEGORY_BROWSABLE) data = Uri.parse("http://") } val targetIntent =...