flutter_qiniu 0.1.3 copy "flutter_qiniu: ^0.1.3" to clipboard
flutter_qiniu: ^0.1.3 copied to clipboard

A flutter plugin for uploading files to Qiniu,support single image or multiple image uploads.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('flutter_qiniu'),
        ),
      ),
    );
  }
}
5
likes
30
pub points
38%
popularity

Publisher

unverified uploader

A flutter plugin for uploading files to Qiniu,support single image or multiple image uploads.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_qiniu