visit_flutter_sdk 0.0.4 copy "visit_flutter_sdk: ^0.0.4" to clipboard
visit_flutter_sdk: ^0.0.4 copied to clipboard

visit_flutter_sdk is a Flutter plugin that integrates web views, URL handling, location services, and permission management. Enhance your mobile app functionality effortlessly with this versatile toolkit!

Flutter Plugin Visit WebView Sdk #

Latest Version 0.0.4 #

A Flutter plugin that provides WebView access with permissions for location, file read/write, and more.

Getting Started #

This plugin allows you to easily embed a WebView in your Flutter application while managing permissions for location access and file operations.

Installation #

Add the following dependency in your pubspec.yaml file:

dependencies:
  flutter:
    sdk: flutter
  flutter_plugin_name: ^1.0.0


iOS Setup

Open the ios/Runner/Info.plist file.
Add the following permissions:

<key>NSAppTransportSecurity</key>
<dict>
	<key>NSAllowsArbitraryLoads</key>
	<true/>
</dict>
<key>NSPhotoLibraryUsageDescription</key>
<string>We need access to your photo library for uploading images.</string>
<key>NSCameraUsageDescription</key>
<string>We need access to your camera for scanning QR codes.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>This app requires access to your location while in use.</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>This app requires access to your location even when not in use.</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Your message explaining why the app needs location access.</string>

Android Setup

Open the android/app/build.gradle file.
To configure the plugin on Android:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

add this in android AndroidManifest.xml file

android:usesCleartextTraffic="true"


0
likes
0
points
37
downloads

Publisher

unverified uploader

Weekly Downloads

visit_flutter_sdk is a Flutter plugin that integrates web views, URL handling, location services, and permission management. Enhance your mobile app functionality effortlessly with this versatile toolkit!

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_inappwebview, geolocator, geolocator_apple, location, permission_handler, plugin_platform_interface, url_launcher, webview_flutter

More

Packages that depend on visit_flutter_sdk

Packages that implement visit_flutter_sdk