motiontag_sdk 0.1.8 copy "motiontag_sdk: ^0.1.8" to clipboard
motiontag_sdk: ^0.1.8 copied to clipboard

The Flutter MOTIONTAG SDK It allows embedding the MOTIONTAG detection intelligence into Flutter mobile application.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:motiontag_sdk_example/controls.dart';
import 'package:motiontag_sdk_example/logs.dart';
import 'package:motiontag_sdk_example/status.dart';

void main() {
  runApp(App());
}

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('MOTIONTAG SDK example'),
        ),
        body: SizedBox.expand(
          child: Padding(
            padding: EdgeInsets.all(10),
            child: Column(
              children: [
                Status(),
                Divider(
                  color: Colors.black,
                ),
                Expanded(
                  child: SizedBox(
                    width: double.infinity,
                    child: Logs(),
                  ),
                ),
                Divider(
                  color: Colors.black,
                ),
                SizedBox(
                  width: double.infinity,
                  child: Controls(),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
6
likes
150
pub points
59%
popularity

Publisher

verified publishermotion-tag.com

The Flutter MOTIONTAG SDK It allows embedding the MOTIONTAG detection intelligence into Flutter mobile application.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on motiontag_sdk