camera_sdk_faizan 0.0.3 copy "camera_sdk_faizan: ^0.0.3" to clipboard
camera_sdk_faizan: ^0.0.3 copied to clipboard

A Flutter SDK for taking photos, recording videos, and saving data

📸 camera_sdk_faizan #

A lightweight Flutter SDK for capturing photos and videos using the device camera.
It provides an easy-to-use API and handles camera initialization, preview, and media saving out of the box.


🚀 Features #

  • 📷 Capture high-quality photos
  • 🎥 Record and save videos
  • 🔄 Live camera preview widget
  • 💾 Automatically saves captured files to device storage
  • 🧱 Simple integration with minimal setup

🧩 Installation #

Add this to your pubspec.yaml file:

🧩 Basic Setup #

Step 1: Initialization #

 final CameraSDKController _camera = CameraSDKController();

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

  Future<void> _initCamera() async {
    await _camera.initialize();
    setState(() => _ready = true);
  }

Step 2: Take Photo and videos #

await _camera.takePhoto();

await _camera.startVideoRecording();

await _camera.stopVideoRecording();
dependencies:
  camera_sdk_faizan: ^0.0.1
0
likes
135
points
175
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter SDK for taking photos, recording videos, and saving data

Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

camera, flutter, flutter_web_plugins, gallery_saver_plus, path_provider, plugin_platform_interface, web

More

Packages that depend on camera_sdk_faizan

Packages that implement camera_sdk_faizan