Skip to content

Sheikhsoft/data_review_and_upload

Repository files navigation

data_review_and_upload is a review map data and submit to server package for Flutter

pub package

A Flutter package for iOS and Android for review map data and submit to server.

Demo

Installation

First, add data_review_and_upload as a dependency in your pubspec.yaml file. Second,

iOS

No configuration required - the plugin should work out of the box.

Android

On Android you'll need to add either the INTERNET permission to your Android Manifest. Todo so open the AndroidManifest.xml file and one of the following two lines as direct children of the <manifest> tag:

<uses-permission android:name="android.permission.INTERNET" />

Code for the Full page location and image picker widget

import 'package:data_review_and_upload/data_review_and_upload.dart';

class DataReviewAndUpload extends StatelessWidget {
  final Map mapData;
  const PageSeven({Key key, this.mapData}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return DataReviewAndUpload(
      mapData: mapData,
    );
  }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published