flutter_native_image_v2 1.1.3 copy "flutter_native_image_v2: ^1.1.3" to clipboard
flutter_native_image_v2: ^1.1.3 copied to clipboard

A flutter plugin which uses native iOS/Android to resize, compress or crop

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text('Plugin example app'),
        ),
        body: new Center(
          child: new Text('Running on: $_platformVersion\n'),
        ),
      ),
    );
  }
}
2
likes
150
points
953
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter plugin which uses native iOS/Android to resize, compress or crop

Homepage
View/report issues

Documentation

API reference

License

BSD-3-Clause, MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_native_image_v2

Packages that implement flutter_native_image_v2