• This project
    • Loading...
  • Sign in

flutter_package / mobile_scanner

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • mobile_scanner
  • lib
  • src
  • camera_args.dart
  • imp: apply camerax · f83a27fa
    f83a27fa Browse Files
    Julian Steenbakker authored 2022-02-10 14:19:12 +0100
camera_args.dart 259 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
import 'package:flutter/material.dart';

/// Camera args for [CameraView].
class CameraArgs {
  /// The texture id.
  final int textureId;

  /// Size of the texture.
  final Size size;

  /// Create a [CameraArgs].
  CameraArgs(this.textureId, this.size);
}