Created
June 24, 2019 09:00
-
-
Save sbis04/06d89f1cc80556d9de2d218c58711a4d to your computer and use it in GitHub Desktop.
flutter_os_ambient
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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