mesh_base_flutter 0.0.1
mesh_base_flutter: ^0.0.1 copied to clipboard
Enables you to build apps on top of peer to smartphone mesh networks
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:mesh_base_flutter_example/TestScreen.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('Mesh Test')),
body: Padding(
padding: const EdgeInsets.all(16),
child: const ExampleTestScreen(),
),
),
),
);
}