Skip to content

Instantly share code, notes, and snippets.

@sbis04
Created March 4, 2019 16:49
Show Gist options
  • Save sbis04/fb9cc2280e9e9de559655709bc18b22f to your computer and use it in GitHub Desktop.
Save sbis04/fb9cc2280e9e9de559655709bc18b22f to your computer and use it in GitHub Desktop.
Base code
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: BluetoothApp(), // BluetoothApp() would be defined later
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment