nkysdk 0.0.3
nkysdk: ^0.0.3 copied to clipboard
nkySdk_flutter插件
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:nkysdk_example/nky_test.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp();
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) => MaterialApp(home: Scaffold(appBar: AppBar(title: const Text('硕欣达蓝牙配网')), body: _body()));
Widget _body() => NkyTestWidget();
}