capturesdk_flutter 2.0.16 copy "capturesdk_flutter: ^2.0.16" to clipboard
capturesdk_flutter: ^2.0.16 copied to clipboard

The official Flutter CaptureSDK by Socket Mobile. It supports all current Socket Mobile’s barcode and NFC Reader scanning solutions.

example/lib/main.dart

import 'package:capturesdk_flutter/capturesdk.dart';
import 'package:flutter/material.dart';

import 'screens/home_screen.dart';

const AppInfo appInfo = AppInfo(
  appIdAndroid: 'android:com.example.example',
  appKeyAndroid:
      'MC4CFQDNCtjazxILEh8oyT6w/wlaVKqS1gIVAKTz2W6TB9EgmjS1buy0A+3j7nX4',
  appIdIos: 'ios:com.example.example',
  appKeyIos:
      'MC0CFA1nzK67TLNmSw/QKFUIiedulUUcAhUAzT6EOvRwiZT+h4qyjEZo9oc0ONM=',
  developerId: 'bb57d8e1-f911-47ba-b510-693be162686a',
);

void main() => runApp(const MyApp());

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'SingleEntry Flutter',
      debugShowCheckedModeBanner: false,
      theme: ThemeData.dark().copyWith(
        scaffoldBackgroundColor: Colors.black,
        appBarTheme: const AppBarTheme(
          backgroundColor: Colors.black,
          elevation: 0,
        ),
        colorScheme: const ColorScheme.dark(
          primary: Color(0xFF0A84FF),
        ),
      ),
      home: const HomeScreen(),
    );
  }
}
5
likes
100
points
1.36k
downloads

Documentation

API reference

Publisher

verified publishersocketmobile.com

Weekly Downloads

The official Flutter CaptureSDK by Socket Mobile. It supports all current Socket Mobile’s barcode and NFC Reader scanning solutions.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, freezed_annotation, http, json_annotation, web_socket_channel

More

Packages that depend on capturesdk_flutter

Packages that implement capturesdk_flutter