Skip to content

Instantly share code, notes, and snippets.

@sbis04
Created June 24, 2019 09:00
Show Gist options
  • Save sbis04/06d89f1cc80556d9de2d218c58711a4d to your computer and use it in GitHub Desktop.
Save sbis04/06d89f1cc80556d9de2d218c58711a4d to your computer and use it in GitHub Desktop.
flutter_os_ambient
import 'package:flutter/material.dart';
class AmbientWatchFace extends StatelessWidget {
@override
Widget build(BuildContext context) => Scaffold(
backgroundColor: Colors.black,
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
'FlutterOS',
style: TextStyle(color: Colors.blue[600], fontSize: 30),
),
SizedBox(height: 15),
const FlutterLogo(size: 60.0),
],
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment