• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
February 02, 2022 |10.4K Views
How to Implement Picture in Picture (PIP) in Flutter?
  Share  1 Like
Description
Discussion

What is Picture in Picture (PIP)? Picture in Picture (PIP) is a special type of multi-window mode mainly used for activities that need to be active on screen but should not take up the whole screen space like watching videos, video calls, navigation, etc. It lets the user watch a video in a small window pinned to a corner of the screen (by default bottom right) while navigating between apps or browsing content on the main screen. You can drag the PIP window to another location using some special toggles. When you tap on the window two special controls appear a full-screen toggle (in the centre of the window) and a close button (an “X” in the upper right corner). This feature is seen in Google Maps, Swiggy where we can get to see a small floating window that displays the directions in Google Maps. We will be displaying that similar type of window but instead of a map, we will be displaying a simple text inside it. We will build a sample application in flutter for implementing PIP inside our application. The programming language used to create this application is dart & IDE used is in Android studio. This project will surely help beginner or intermediate level Android developers to brush up and enhance their Android development skills. Get ready to level up your skills.

Related Articles : https://www.geeksforgeeks.org/how-to-implement-picture-in-picture-pip-in-android/

Read More