Git Product home page Git Product logo

provinece_picker's Introduction

province_provider

Province Picker 根据Android-PickerView进行的Flutterplugin

Getting Started

dependency

province_provider:
    git:
      url: [email protected]:skeyboy/provinece_picker.git
      tag: 0.0.1

init


import 'package:province_provider/province_provider.dart';

ProvinceProvider provinceProvider = new ProvinceProvider();


 provinceProvider.provinceCallback(_handler);
 
 Future<dynamic> _handler(MethodCall methodCall){
 
     if(methodCall.method == "provinceResult"){
       Map<dynamic, dynamic> result = methodCall.arguments;
       var type = result["type"];
       if(type == "province"){
 setState(() {
   Map<dynamic, dynamic> info = result["value"];
   _platformVersion = "$info";
 });
       }
     }
     return Future.value(true);
   }

Call

Future<void> show() async {
String platformVersion = "None";

final dynamic result = await provinceProvider.showProvinceProvider("选择籍贯");
setState(() {
  _platformVersion = "$locationInfo";
});

//UI action
 RaisedButton(
            child: Text('Get Battery Level'),
            onPressed: show,
          ),

show

"预览图片"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.