native_opencv 0.0.1 copy "native_opencv: ^0.0.1" to clipboard
native_opencv: ^0.0.1 copied to clipboard

discontinued

A native opencv package

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(MaterialApp(
    title: 'Navigation Basics',
    home: FirstRoute(),
  ));
}

class FirstRoute extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('First Route'),
      ),
      body: Center(
        child: ElevatedButton(
          child: Text('Native OpenCV'),
          onPressed: () {
            Navigator.push(
              context,
              MaterialPageRoute(
                builder: (BuildContext context) {
                  return Scaffold(
                    body: Center(
                      child: Text('On progress..'),
                    ),
                  );
                },
              ),
            );
          },
        ),
      ),
    );
  }
}
1
likes
30
pub points
31%
popularity

Publisher

unverified uploader

A native opencv package

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on native_opencv