ble_peripheral_plus 2.5.3
ble_peripheral_plus: ^2.5.3 copied to clipboard
A maintained Flutter BLE peripheral and GATT server plugin for Android, iOS, macOS, and Windows, based on ble_peripheral.
import 'package:ble_peripheral_example/home_controller.dart';
import 'package:ble_peripheral_example/home_view.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
Get.put(HomeController());
runApp(
const GetMaterialApp(
debugShowCheckedModeBanner: false,
title: "BlePeripheral",
home: HomeView(),
),
);
}