Skip to content

Instantly share code, notes, and snippets.

View jwiese-ms-zz's full-sized avatar

John Wiese jwiese-ms-zz

  • Microsoft.
  • Sussex, WI
View GitHub Profile
@jwiese-ms-zz
jwiese-ms-zz / calibration_screen.dart
Last active March 15, 2019 15:05
Calibration Page
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
void _reporter(Offset global, Offset center) {
print( 'Touch: Global -> $global, Local -> $center');
}