Developed with 💙 by Very Good Ventures 🦄
A Very Good Flutter Federated Plugin created by the Very Good Ventures Team.
Generated by the Very Good CLI 🤖
Enable PiP Mode in AndroidManifest.xml by adding android:supportsPictureInPicture="true"
Add the necessary permissions and PiP configuration to your AndroidManifest.xml.
xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.flutterplaza.pipvideoplayer">
<application
android:label="PipVideoPlayer"
android:allowBackup="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="PipVideoPlayer"
android:supportsPictureInPicture="true"
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Very Good Flutter Plugin uses fluttium for integration tests. Those tests are located
in the front facing package pip_video_player
example.
❗ In order to run the integration tests, you need to have the fluttium_cli
installed. See how.
To run the integration tests, run the following command from the root of the project:
cd pip_video_player/example
fluttium test flows/test_platform_name.yaml