nordic_dfu_web 0.0.5
nordic_dfu_web: ^0.0.5 copied to clipboard
Flutter Plugin to Update Device Firmware (DFU) of your nrf51 or nrf52 chip from Nordic Semiconductor
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:nordic_dfu_web_example/home.dart';
void main() {
runApp(
const MaterialApp(
debugShowCheckedModeBanner: false,
title: "Nordic Dfu",
home: Home(),
),
);
}