flutter_opendroneid 1.0.0 copy "flutter_opendroneid: ^1.0.0" to clipboard
flutter_opendroneid: ^1.0.0 copied to clipboard

A flutter plugin for reading Wi-Fi and Bluetooth Remote ID advertisements using native Android and iOS platform-specific implementation.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_opendroneid/flutter_opendroneid.dart';

import 'home_page.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() {
    FlutterOpenDroneId.initialize();
    super.initState();
  }

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'flutter_opendroneid demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
      ),
      home: const HomePage(title: 'flutter_opendroneid demo'),
    );
  }
}
7
likes
110
points
157
downloads

Publisher

verified publisherdronetag.cz

Weekly Downloads

A flutter plugin for reading Wi-Fi and Bluetooth Remote ID advertisements using native Android and iOS platform-specific implementation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

dart_opendroneid, device_info_plus, flutter, permission_handler

More

Packages that depend on flutter_opendroneid

Packages that implement flutter_opendroneid