pixelscope 0.0.6 copy "pixelscope: ^0.0.6" to clipboard
pixelscope: ^0.0.6 copied to clipboard

PlatformAndroid

A new MicroScope SDK Package.

example/lib/main.dart

// main.dart

import 'package:flutter/material.dart';
import 'package:pixelscope_example/home_screen.dart';
import 'package:pixelscope_example/settings_screen.dart';

import 'device_info_screen.dart';

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

class PixelscopeApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Pixelscope Example App',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: HomeScreen(),
      routes: {
        '/settings': (_) => SettingsScreen(),
        '/deviceInfo': (_) => DeviceInfoScreen(),
      },
    );
  }
}
0
likes
140
points
46
downloads

Publisher

verified publisherdhola.me

Weekly Downloads

A new MicroScope SDK Package.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on pixelscope