flutter_native_image 0.0.5+1 copy "flutter_native_image: ^0.0.5+1" to clipboard
flutter_native_image: ^0.0.5+1 copied to clipboard

discontinued
outdated

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'),
        ),
      ),
    );
  }
}
246
likes
0
pub points
99%
popularity

Publisher

verified publisherkonseben.dev

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

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_native_image