Skip to main content

Print the file in chrome in android devices || Save the page as pdf in android devices

 Solution:

If you are using android devices and opened one file from web and want to save in your device then follow the below steps.

1.In chrome app click the 3dots in top right corner

2.It shows one dropdown with share option also then select that

3.It will show popover below the screen with recent apps and drag the window from right to left.In the end it will show print option.Click that and it will open your default file manager with save as pdf option.Save the file wherever you want.Enjoy...

Comments

Popular posts from this blog

Local variable for "serviceWorkerVersion" is deprecated in flutter

Problem:  Local variable for "serviceWorkerVersion" is deprecated. Use "{{flutter_service_worker_ version}}" template token instead. See  https://docs.flutter.dev/ platform-integration/web/ initialization  for more details. While try to run my flutter app in chrome it shows the above error. Solution: In script file it shows as like below < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = null ; </ script > Replace with below.It will works fine. < script > // The value below is injected by flutter build, do not touch. var serviceWorkerVersion = "{{flutter_service_worker_ version}}" ; </ script >