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

A Swing Technologies Library.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'camera_screen.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: CameraScreen(),
    );
  }
}
0
likes
120
points
28
downloads

Publisher

verified publisheropensource.appworld.in

Weekly Downloads

A Swing Technologies Library.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on swing_camera